diff --git a/CHANGELOG.md b/CHANGELOG.md index 0dd87dd..f354553 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## 0.3.0 +- Correctly handle binary files in create-blob! and get-blob operations +- Fix reflective accesses in clj-github-mock.impl.jgit +- Remove base64-clj dependency +- Bump dependencies + - org.eclipse.jgit/org.eclipse.jgit from 5.11.0 to 6.10.0 + - metosin/reitit-ring from 0.5.13 to 0.7.2 + - datascript from 1.1.0 to 1.7.3 + ## 0.2.0 - Bump some libs diff --git a/RELEASING.md b/RELEASING.md index 53de89a..9649cb4 100644 --- a/RELEASING.md +++ b/RELEASING.md @@ -1,9 +1,9 @@ # Releasing -Anybody with write access to this repository can release a new version and deploy it to Clojars. To do this, first make sure your local master is sync'd with master on github: +Anybody with write access to this repository can release a new version and deploy it to Clojars. To do this, first make sure your local main is sync'd with main on github: ```bash -git checkout master +git switch main git pull ``` diff --git a/project.clj b/project.clj index 4776f70..781f17f 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject dev.nubank/clj-github-mock "0.2.0" +(defproject dev.nubank/clj-github-mock "0.3.0" :description "An emulator of the github api" :url "https://github.com/nubank/clj-github-mock" :license {:name "EPL-2.0 OR GPL-2.0-or-later WITH Classpath-exception-2.0"