Skip to content

Commit

Permalink
Release 2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Arnout Roemers committed Mar 20, 2021
1 parent f0b303f commit f75a459
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## [2.2.1] - 2021-03-20
### Changed
- Merged #26 - Support tools.namespace 0.3.x and and 1.x.x

## [2.2.0] - 2021-03-20
### Added
- Merged #28 - Add autostart extension
Expand Down Expand Up @@ -122,6 +126,7 @@ Updated docs to be hosted on cljdoc.org.
## 0.9
- Initial release

[2.2.1]: https://github.com/aroemers/mount-lite/compare/2.2.1...2.2.0
[2.2.0]: https://github.com/aroemers/mount-lite/compare/2.2.0...2.1.5
[2.1.5]: https://github.com/aroemers/mount-lite/compare/2.1.5...2.1.4
[2.1.4]: https://github.com/aroemers/mount-lite/compare/2.1.4...2.1.3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ A library resembling [mount](https://github.com/tolitius/mount), but different o

## Getting started

Add `[functionalbytes/mount-lite "2.2.0"]` or `functionalbytes/mount-lite {:mvn/version "2.2.0"}` to your dependencies and make sure Clojars is one of your repositories.
Add `[functionalbytes/mount-lite "2.2.1"]` or `functionalbytes/mount-lite {:mvn/version "2.2.1"}` to your dependencies and make sure Clojars is one of your repositories.

You can find all the documentation about mount-lite, what makes it unique, and the API by clicking on the link below:

Expand Down
6 changes: 3 additions & 3 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
(defproject functionalbytes/mount-lite "2.2.0"
(defproject functionalbytes/mount-lite "2.2.1"
:description "mount, but different and light"
:url "https://github.com/aroemers/mount-lite"
:license {:name "Eclipse Public License"
:url "http://www.eclipse.org/legal/epl-v10.html"}
:dependencies [[org.clojure/clojure "1.8.0"]]
:profiles {:test {:dependencies [[org.clojure/tools.namespace "0.2.11"]]}
:test-tools-namespace-0.3.x {:dependencies [^:replace [org.clojure/tools.namespace "0.3.1"]]}
:test-tools-namespace-1.x.x {:dependencies [^:replace [org.clojure/tools.namespace "1.1.0"]]}}
:tools-namespace-0.3.x {:dependencies [^:replace [org.clojure/tools.namespace "0.3.1"]]}
:tools-namespace-1.x.x {:dependencies [^:replace [org.clojure/tools.namespace "1.1.0"]]}}
:global-vars {*warn-on-reflection* true})
2 changes: 1 addition & 1 deletion src/mount/extensions/namespace_deps.clj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Using these functions, your project *must* include the
org.clojure/tools.namespace library. This extension has been tested
with version 0.2.11 of that library."
with version 0.2.11, 0.3.1 and 1.1.0 of that library."
{:clojure.tools.namespace.repl/load false
:clojure.tools.namespace.repl/unload false}
(:require [mount.extensions.common-deps :as common-deps]
Expand Down

0 comments on commit f75a459

Please # to comment.