Skip to content

Commit

Permalink
Add version control info to release artifact pom
Browse files Browse the repository at this point in the history
This will allow clojars and cljdoc to link back to project sources.

Also: Added description (grabbed from GitHub repo description) and url.
These can be interesting to services.

Closes #71
  • Loading branch information
lread committed Oct 10, 2024
1 parent 43a40e0 commit e18df0c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

Babashka [http-client](https://github.com/babashka/http-client): HTTP client for Clojure and babashka built on java.net.http

## Unreleased

- [#71](https://github.com/babashka/http-client/issues/71): Link back to sources in release artifact
([@lread](https://github.com/lread))

## 0.4.21 (2024-09-10)

- [#68](https://github.com/babashka/http-client/issues/68) Fix accidental URI path decoding in uri-with-query
Expand Down
8 changes: 7 additions & 1 deletion build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,14 @@
:version version
:basis basis
:src-dirs ["src"]
:scm {:url "https://github.com/babashka/http-client"
:connection "scm:git:[email protected]:babashka/http-client.git"
:developerConnection "scm:git:[email protected]:babashka/http-client.git"
:tag (format "v%s" version)}
:pom-data
[[:licenses
[[:description "HTTP client for Clojure and Babashka built on java.net.http"]
[:url "https://github.com/babashka/http-client"]
[:licenses
[:license
[:name "MIT License"]
[:url "https://opensource.org/license/mit/"]]]]})
Expand Down

0 comments on commit e18df0c

Please sign in to comment.