Skip to content

Commit cbd7b68

Browse files
committed
clojars release take 2
1 parent 844d058 commit cbd7b68

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ This project uses [**Break Versioning**](https://www.taoensso.com/break-versioni
66

77
## [UNRELEASED]
88

9+
## `v0.1.1` (2025-08-18)
10+
11+
Sorry, this is my first from-scratch clojars release, and I'm struggling to get the metadata working.
12+
13+
There are no changes.
14+
915
## `v0.1.0` (2025-08-18)
1016

1117
This is the first public release of this codebase under the `ol.client-ip` moniker.

bb.edn

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,5 @@
2525
:task (shell "clojure -T:build clean")}
2626
publish {:doc "Publish the clojure sdk libs to clojars"
2727
:depends [jar]
28-
:task (doseq [dir sdk-lib-dirs]
29-
(clojure {:dir dir} "-T:build deploy"))}
28+
:task (clojure "-T:build deploy")}
3029
ci {:depends [test fmt.check lint]}}}

build.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
(defn url->scm [url-string]
2828
(let [[_ domain repo-path] (re-find #"https?://?([\w\-\.]+)/(.+)" url-string)]
2929
[:scm
30-
[:url (str "https://" domain "/")]
30+
[:url (str "https://" domain "/" repo-path)]
3131
[:connection (str "scm:git:https://" domain "/" repo-path)]
3232
[:developerConnection (str "scm:git:ssh:git@" domain ":" repo-path)]]))
3333

@@ -46,7 +46,7 @@
4646
[:license
4747
[:name license-id]
4848
[:url (permalink license-file)]]]
49-
(conj (url->scm repo-url-prefix) [:tag (str "v" version)])]})
49+
(conj (url->scm repo-url-prefix) [:tag rev])]})
5050

5151
(b/copy-dir {:src-dirs ["src" "resources"]
5252
:target-dir class-dir})

deps.edn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
:neil {:project {:name com.outskirtslabs/client-ip
1010
:license {:id "MIT"}
1111
:description "A 0-dependency ring middleware for determining a request's real client IP address from HTTP headers"
12-
:version "0.1.0"}}}}
12+
:version "0.1.1"}}}}

0 commit comments

Comments
 (0)