From 5aaadd1b956fe385f5fb6dee3d2581d285c50e32 Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Thu, 2 Apr 2026 16:03:49 +0300 Subject: [PATCH] Bump version to 0.1.1 and update changelog --- CHANGELOG.md | 7 +++++++ README.md | 2 +- build.clj | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 32da191..12a0525 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.1] - 2026-04-02 + +### Fixed +- JAR now includes `.clj` source files — `0.1.0` was missing them, causing `FileNotFoundException` on require +- `install` build task now writes pom, copies sources, and builds the JAR before installing to local Maven cache + ## [0.1.0] - 2026-04-02 ### Added @@ -26,4 +32,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Token resolved from `POCKETENV_TOKEN` env var or `~/.pocketenv/token.json` - MIT License +[0.1.1]: https://github.com/pocketenv-io/pocketenv-clojure/releases/tag/v0.1.1 [0.1.0]: https://github.com/pocketenv-io/pocketenv-clojure/releases/tag/v0.1.0 diff --git a/README.md b/README.md index c3f54fe..ad6f822 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Clojure SDK for the [Pocketenv](https://pocketenv.io) sandbox platform. Add to your `deps.edn`: ```clojure -{:deps io.pocketenv/pocketenv {:mvn/version "0.1.0-SNAPSHOT"}} +{:deps io.pocketenv/pocketenv {:mvn/version "0.1.1-SNAPSHOT"}} ``` ## Configuration diff --git a/build.clj b/build.clj index 30a5378..8d0a6bf 100644 --- a/build.clj +++ b/build.clj @@ -4,7 +4,7 @@ [deps-deploy.deps-deploy :as dd])) (def lib 'io.pocketenv/pocketenv) -(def version "0.1.0-SNAPSHOT") +(def version "0.1.1-SNAPSHOT") #_ ; alternatively, use MAJOR.MINOR.COMMITS: (def version (format "1.0.%s" (b/git-count-revs nil))) (def class-dir "target/classes") -- 2.51.2