Skip to content

Commit

Permalink
Release 0.2.18 (#418)
Browse files Browse the repository at this point in the history
Release 0.2.18.
  • Loading branch information
tengstrand authored Dec 19, 2023
1 parent 9e79264 commit e8feb79
Show file tree
Hide file tree
Showing 15 changed files with 29 additions and 26 deletions.
1 change: 1 addition & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion components/antq/deps.edn
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{:paths ["src"]
:deps {com.github.liquidz/antq {:mvn/version "2.7.1133"}}
:deps {com.github.liquidz/antq {:mvn/version "2.7.1147"}}
:aliases {:test {:extra-paths ["test"]
:extra-deps {}}}}
6 changes: 3 additions & 3 deletions components/api/src/polylith/clj/core/api/interface.clj
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
As an example, the `clj-poly` library is first specified in the
[build](https://github.com/polyfy/polylith/blob/5ff79341e7dc3fc6a486584c6c2f2f46cb577d6e/deps.edn#L120)
alias in polylith's `build.clj` and then used in
[build.clj](https://github.com/polyfy/polylith/blob/5ff79341e7dc3fc6a486584c6c2f2f46cb577d6e/build.clj#L83).
[build.clj](https://github.com/polyfy/polylith/blob/9e79264981b0c5be6e6cb70c93a540a82c489510/build.clj#L83).
If you need more access than is exposed by the API at the moment, just reach out to the
Polylith team in [Slack](https://clojurians.slack.com/messages/C013B7MQHJQ)
Expand All @@ -49,7 +49,7 @@
Each key stores a map with two keys:
```clojure
:breaking Increased by one if a breaking change + `:non-breaking` is set to zero.
:breaking Increased by one if a breaking change + :non-breaking is set to zero.
:non-breaking Increased by one if a non-breaking change.
```
Expand All @@ -68,7 +68,7 @@
```
Any changes that only add functionality/attributes, will increase the `:non-breaking` number by one.
If you use a SNAPSHOT version, then you can check [next-release.txt](https://github.com/polyfy/polylith/blob/issue-318/next-release.txt)
If you use a SNAPSHOT version, then you can check [next-release.txt](https://github.com/polyfy/polylith/blob/master/next-release.txt)
to get a summary of all the changes that have been made since the last stable/final release."
{:api version/api-version
:test-runner version/test-runner-api-version
Expand Down
2 changes: 1 addition & 1 deletion components/tap/deps.edn
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{:paths ["src"]
:deps {djblue/portal {:mvn/version "0.50.0"}}
:deps {djblue/portal {:mvn/version "0.51.0"}}
:aliases {:test {:extra-paths []
:extra-deps {}}}}
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
(def major 0)
(def minor 2)
(def patch 18)
(def revision SNAPSHOT) ;; Set to SNAPSHOT or RELEASE.
(def snapshot 23) ;; Increase by one for every snapshot release, or set to 0 if a release.
(def revision RELEASE) ;; Set to SNAPSHOT or RELEASE.
(def snapshot 0) ;; Increase by one for every snapshot release, or set to 0 if a release.
(def snapshot? (= SNAPSHOT revision))

(def name-without-rev (str major "." minor "." patch))
Expand All @@ -36,7 +36,7 @@

(def tool (if system/extended? "polyx" "poly"))

(def date "2023-12-15")
(def date "2023-12-19")

;; Execute 'poly doc version' to see when different changes was introduced.
(def api-version {:breaking 1, :non-breaking 0})
Expand Down
2 changes: 1 addition & 1 deletion doc/polyx.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ If you want to use `polyx`, add it as an alias to your `./deps.edn` file:
:polyx {:main-opts ["-m" "polylith.clj.core.poly-cli.core"]
:extra-deps {polyfy/polylith
{:git/url "https://github.com/polyfy/polylith"
:sha "155b55ab9e51ecd5ee0622a82a87468dac00bba3" ;; <1>
:sha "9e79264981b0c5be6e6cb70c93a540a82c489510" ;; <1>
:deps/root "projects/polyx"}}}}}
----
<1> Choose the revision via a Git SHA
Expand Down
2 changes: 1 addition & 1 deletion examples/doc-example/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
:ns-default build}

:poly {:main-opts ["-m" "polylith.clj.core.poly-cli.core"]
:extra-deps {polylith/clj-poly {:mvn/version "0.2.18-SNAPSHOT"}}}}}
:extra-deps {polylith/clj-poly {:mvn/version "0.2.18"}}}}}
6 changes: 4 additions & 2 deletions next-release.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Included in 0.2.18-SNAPSHOT:
316 Don't validate data_readers.clj files.
318 Use cljdoc for the poly tool documentation. Moved back all the poly tool documentation to the GitHib repository
together with the source code + updated the documentation + added new pages:
Artifacts, Doc, Poly as a library, Tap, Test Runners, Validations, Source code, Polyx, and Maintenance.
Artifacts, Doc, Tap, Test Runners, Validations, Source code, Polylith CI setup, Polyx, and Versions.
The new 'doc' command was added, giving us easy access all web based, Polylith related documentation.
376 Support updating all libraries to the latest version, by using 'poly libs :update'.

Expand All @@ -41,7 +41,7 @@ Included in 0.2.18-SNAPSHOT:
319 lread Tweak bb doc task that offers cljdoc previews + the related PRs 320, 321 and 325.
323 john-shaffer Fix NPE when taking the size of a directory.
324 j1mr10rd4n Fix filename/namespace mismatch in profile.adoc.
327 lread Reviews all the documentation, with one PR per page, starting with PR 327!
327 lread Reviews most of the documentation, with one PR per page, starting with PR 327!
332 lread Add clj-kondo config exports.

Other improvements
Expand All @@ -61,3 +61,5 @@ Other improvements
a PR could suddenly start failing if a newer version of a used library was released.
- If we switch to a file using e.g. 'switch-ws file:ws.edn', the :no-changes will now work properly.
- Removed support for running `poly` as a Clojure Tool.
- Show size as dash (- instead of 0) in the libs command, if a library hasn't been downloaded yet. This stopped working in 0.2.17-alpha.
- Handle spacing between bricks correctly in the libs command when passing in skip:dev.
4 changes: 2 additions & 2 deletions projects/poly/test/project/poly/poly_workspace_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@
" ---------------------------------------------------- ----------- ---------------------- ----------------------------"
" borkdude/edamame 1.3.23 maven 24 x x x - - . . x . . . . . . ."
" clj-commons/fs 1.6.310 maven 12 x x x - - . . x . . . . . . ."
" com.github.liquidz/antq 2.7.1133 maven 51 x x x - - x . . . . . . . . ."
" djblue/portal 0.50.0 maven 1,845 x x x - - . . . . . . x . . ."
" com.github.liquidz/antq 2.7.1147 maven 52 x x x - - x . . . . . . . . ."
" djblue/portal 0.51.0 maven 1,847 x x x - - . . . . . . x . . ."
" metosin/malli 0.13.0 maven 85 x x x - - . . . . . . . x . ."
" mvxcvi/puget 1.3.4 maven 15 x x x - - . . . . . . . . . x"
" org.clojure/clojure 1.11.1 maven 4,008 x x x - - . . . . . . . . . ."
Expand Down
14 changes: 7 additions & 7 deletions readme.adoc
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
image::doc/images/logo.png[width=400]
:cljdoc-doc-url: https://cljdoc.org/d/polylith/clj-poly/CURRENT/doc
// Make sure we use the same version here as in components/version/.../interface.clj
:snapshot-version: 0.2.18 SNAPSHOT #23
//:snapshot-version: 0.2.19 SNAPSHOT #1

//https://cljdoc.org/d/polylith/clj-poly/CURRENT[image:https://cljdoc.org/badge/polylith/clj-poly[cljdoc]]
https://polylith.gitbook.io/poly[image:https://badgen.net/badge/doc/0.2.17-alpha/blue[]]
ifdef::env-cljdoc[]
https://cljdoc.org/d/polylith/clj-poly/0.2.18-SNAPSHOT[image:https://badgen.net/badge/doc/0.2.18-SNAPSHOT/cyan[]]
endif::[]
https://cljdoc.org/d/polylith/clj-poly/CURRENT/doc/readme[image:https://badgen.net/badge/doc/0.2.18/blue[]]
//ifdef::env-cljdoc[]
//https://cljdoc.org/d/polylith/clj-poly/0.2.18-SNAPSHOT[image:https://badgen.net/badge/doc/0.2.18-SNAPSHOT/cyan[]]
//endif::[]
https://clojurians.slack.com/messages/C013B7MQHJQ[image:https://badgen.net/badge/slack/join chat/green[]]

== Welcome to the wonderful world of Polylith for Clojure!

NOTE: *Work in Progress*: While we are very proud of our documentation, we are currently working to make it even better!
To give you a sneak peek, we built this `{snapshot-version}` release from our https://github.com/polyfy/polylith/tree/master[master] branch.
//NOTE: *Work in Progress*: While we are very proud of our documentation, we are currently working to make it even better!
//To give you a sneak peek, we built this `{snapshot-version}` release from our https://github.com/polyfy/polylith/tree/master[master] branch.

Polylith is made by developers for developers.
Our goal is to maximize productivity and increase the quality of the systems we create.
Expand Down
2 changes: 1 addition & 1 deletion scripts/sections/base/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
"bases/cli/test"]}

:poly {:main-opts ["-m" "polylith.clj.core.poly-cli.core"]
:extra-deps {polylith/clj-poly {:mvn/version "0.2.18-SNAPSHOT"}}}}}
:extra-deps {polylith/clj-poly {:mvn/version "0.2.18"}}}}}
2 changes: 1 addition & 1 deletion scripts/sections/build/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
:ns-default build}

:poly {:main-opts ["-m" "polylith.clj.core.poly-cli.core"]
:extra-deps {polylith/clj-poly {:mvn/version "0.2.18-SNAPSHOT"}}}}}
:extra-deps {polylith/clj-poly {:mvn/version "0.2.18"}}}}}
2 changes: 1 addition & 1 deletion scripts/sections/profile/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -25,4 +25,4 @@
:ns-default build}

:poly {:main-opts ["-m" "polylith.clj.core.poly-cli.core"]
:extra-deps {polylith/clj-poly {:mvn/version "0.2.18-SNAPSHOT"}}}}}
:extra-deps {polylith/clj-poly {:mvn/version "0.2.18"}}}}}
2 changes: 1 addition & 1 deletion scripts/sections/project/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
"bases/cli/test"]}

:poly {:main-opts ["-m" "polylith.clj.core.poly-cli.core"]
:extra-deps {polylith/clj-poly {:mvn/version "0.2.18-SNAPSHOT"}}} }}
:extra-deps {polylith/clj-poly {:mvn/version "0.2.18"}}}}}
2 changes: 1 addition & 1 deletion scripts/sections/testing/deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
:ns-default build}

:poly {:main-opts ["-m" "polylith.clj.core.poly-cli.core"]
:extra-deps {polylith/clj-poly {:mvn/version "0.2.18-SNAPSHOT"}}}}}
:extra-deps {polylith/clj-poly {:mvn/version "0.2.18"}}}}}

0 comments on commit e8feb79

Please sign in to comment.