Skip to content

Commit

Permalink
Set release version, update CHANGELOG.
Browse files Browse the repository at this point in the history
  • Loading branch information
greglook committed Oct 10, 2024
1 parent 032c386 commit dcb0970
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
15 changes: 13 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,20 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

...


## [1.1.0] - 2024-10-10

### Changed
- Sparkplug is now tested with Java 11 + Spark 3.1.3, and Java 11 + Spark 3.5.1.
Java 8 test coverage was dropped.
- Bump Clojure to 1.11.1.
- Bump Clojure to 1.12.0.
- Update various dependency versions.
- Add clj-kondo linting to test suite.
- Fix bug when serializing functions which close over a boolean value.
[#27](https://github.com/amperity/sparkplug/issues/27)
[#28](https://github.com/amperity/sparkplug/pull/28)


## [1.0.0] - 2022-05-31
Expand Down Expand Up @@ -42,7 +52,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
[#21](https://github.com/amperity/sparkplug/pull/21)


[Unreleased]: https://github.com/amperity/sparkplug/compare/1.0.0...HEAD
[Unreleased]: https://github.com/amperity/sparkplug/compare/1.1.0...HEAD
[1.1.0]: https://github.com/amperity/sparkplug/compare/1.0.0...1.1.0
[1.0.0]: https://github.com/amperity/sparkplug/compare/0.1.9...1.0.0
[0.1.9]: https://github.com/amperity/sparkplug/compare/0.1.8...0.1.9
[0.1.8]: https://github.com/amperity/sparkplug/compare/0.1.7...0.1.8
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject amperity/sparkplug "1.0.1-SNAPSHOT"
(defproject amperity/sparkplug "1.1.0"
:description "Clojure API for Apache Spark"
:url "https://github.com/amperity/sparkplug"
:license {:name "Apache License 2.0"
Expand All @@ -14,7 +14,7 @@

:dependencies
[[org.clojure/clojure "1.12.0"]
[amperity/sparkplug-core "1.0.1-SNAPSHOT"]]
[amperity/sparkplug-core "1.1.0"]]

:profiles
{:dev
Expand Down
2 changes: 1 addition & 1 deletion sparkplug-core/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject amperity/sparkplug-core "1.0.1-SNAPSHOT"
(defproject amperity/sparkplug-core "1.1.0"
:description "Clojure API for Apache Spark"
:url "https://github.com/amperity/sparkplug"
:scm {:dir ".."}
Expand Down
4 changes: 2 additions & 2 deletions sparkplug-repl/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject amperity/sparkplug-repl "1.0.1-SNAPSHOT"
(defproject amperity/sparkplug-repl "1.1.0"
:description "Clojure REPL for Spark exploration"
:url "https://github.com/amperity/sparkplug"
:scm {:dir ".."}
Expand All @@ -9,7 +9,7 @@

:dependencies
[[org.clojure/clojure "1.12.0"]
[amperity/sparkplug-core "1.0.1-SNAPSHOT"]
[amperity/sparkplug-core "1.1.0"]
[mvxcvi/whidbey "2.2.1"]
[nrepl "1.3.0"]]

Expand Down

0 comments on commit dcb0970

Please sign in to comment.