From dcb097086a0be1f67b6cab0252937f334954a3b5 Mon Sep 17 00:00:00 2001 From: Greg Look Date: Thu, 10 Oct 2024 10:34:03 -0700 Subject: [PATCH] Set release version, update CHANGELOG. --- CHANGELOG.md | 15 +++++++++++++-- project.clj | 4 ++-- sparkplug-core/project.clj | 2 +- sparkplug-repl/project.clj | 4 ++-- 4 files changed, 18 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 70b5ba8..b49447f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/project.clj b/project.clj index 78f838e..acc1e9e 100644 --- a/project.clj +++ b/project.clj @@ -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" @@ -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 diff --git a/sparkplug-core/project.clj b/sparkplug-core/project.clj index 388e1c7..bddb8e6 100644 --- a/sparkplug-core/project.clj +++ b/sparkplug-core/project.clj @@ -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 ".."} diff --git a/sparkplug-repl/project.clj b/sparkplug-repl/project.clj index bda8477..7e6e784 100644 --- a/sparkplug-repl/project.clj +++ b/sparkplug-repl/project.clj @@ -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 ".."} @@ -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"]]