Skip to content

Commit

Permalink
Releases/v 0 3 9 (#321)
Browse files Browse the repository at this point in the history
* Update version to 0.3.9

* Updated changelog and docs

* Updated changelog
  • Loading branch information
edurdevic authored Mar 23, 2023
1 parent 5324180 commit 5c4c047
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.3.9
- Fixed k-ring interpolation on raster data read

## v0.3.8
- Added readers for default GDAL raster drivers (https://gdal.org/drivers/raster/index.html)
- TIFF
Expand Down
2 changes: 1 addition & 1 deletion R/sparkR-mosaic/sparkrMosaic/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: sparkrMosaic
Title: SparkR bindings for Databricks Mosaic
Version: 0.3.8
Version: 0.3.9
Authors@R:
person("Robert", "Whiffin", , "[email protected]", role = c("aut", "cre")
)
Expand Down
2 changes: 1 addition & 1 deletion R/sparklyr-mosaic/sparklyrMosaic/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: sparklyrMosaic
Title: sparklyr bindings for Databricks Mosaic
Version: 0.3.8
Version: 0.3.9
Authors@R:
person("Robert", "Whiffin", , "[email protected]", role = c("aut", "cre")
)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Stuart Lynn, Milos Colic, Erni Durdevic, Robert Whiffin, Timo Roest'

# The full version, including alpha/beta/rc tags
release = "v0.3.8"
release = "v0.3.9"


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.databricks.labs</groupId>
<artifactId>mosaic</artifactId>
<version>0.3.8</version>
<version>0.3.9</version>

<properties>
<minimum.coverage>80</minimum.coverage>

This comment has been minimized.

Copy link
@Dev5858

Dev5858 Mar 27, 2023

require 'rake'
require 'rake/testtask'
require 'rubygems/package_task'

begin
require 'jeweler'
Jeweler::Tasks.new do |spec|
spec.name = "svn2git"
spec.summary = "A tool for migrating svn projects to git"
spec.authors = ["James Coglan", "Kevin Menard"]
spec.homepage = "https://github.com/nirvdrum/svn2git"
spec.email = "[email protected]"
spec.license = 'MIT'
spec.add_development_dependency 'minitest'
end
Jeweler::GemcutterTasks.new

rescue LoadError
puts "Jeweler not available. Install it with: gem install jeweler"
end

desc 'Test the rubber plugin.'
Rake::TestTask.new(:test) do |t|
t.libs << 'lib'
t.libs << 'test'
t.pattern = 'test/**/*_test.rb'
t.verbose = true
end

desc 'Default: run unit tests.'
task :default => :test

Expand Down
2 changes: 1 addition & 1 deletion python/mosaic/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
from .models import SpatialKNN
from .readers import read

__version__ = "0.3.8"
__version__ = "0.3.9"

0 comments on commit 5c4c047

Please sign in to comment.