Skip to content

Commit

Permalink
RELEASE: v0.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
st-cheewah committed Feb 10, 2024
1 parent 3bea831 commit 0833c94
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ clojure(script) library that dynamically interprets protobuf files (.proto) and
## Usage
Add the following to deps.edn (or its equivalent for lein).
```edn
{:deps {com.github.s-expresso/clojobuf {:mvn/version "0.1.10"}}}
{:deps {com.github.s-expresso/clojobuf {:mvn/version "0.1.11"}}}
```

Say you have the following `example.proto` file
Expand Down
2 changes: 1 addition & 1 deletion build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
(:require [clojure.tools.build.api :as b]))

(def lib 'com.github.s-expresso/clojobuf)
(def version "0.1.10") ;(format "0.0.%s" (b/git-count-revs nil))
(def version "0.1.11") ;(format "0.0.%s" (b/git-count-revs nil))
(def class-dir "target/classes")
(def basis (b/create-basis {:project "deps.edn"}))
(def jar-file (format "target/%s-%s.jar" (name lib) version))
Expand Down
3 changes: 2 additions & 1 deletion deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
metosin/malli {:mvn/version "0.13.0"}
org.clojure/clojure {:mvn/version "1.11.1"}
org.clojure/clojurescript {:mvn/version "1.11.60"}
org.clojure/test.check {:mvn/version "0.10.0"}
com.github.s-expresso/rubberbuf {:mvn/version "0.1.9.a"}
com.github.s-expresso/clojobuf-codec {:mvn/version "0.1.6"}
}
Expand Down Expand Up @@ -31,4 +32,4 @@
:exec-fn deps-deploy.deps-deploy/deploy
:exec-args {:installer :remote
:sign-releases? false
:artifact "target/clojobuf-0.1.10.jar"}}}}
:artifact "target/clojobuf-0.1.11.jar"}}}}
9 changes: 7 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
<packaging>jar</packaging>
<groupId>com.github.s-expresso</groupId>
<artifactId>clojobuf</artifactId>
<version>0.1.10</version>
<version>0.1.11</version>
<name>clojobuf</name>
<scm>
<connection>scm:git:git://github.com/s-expresso/clojobuf.git</connection>
<developerConnection>scm:git:ssh://git@github.com/s-expresso/clojobuf.git</developerConnection>
<tag>v0.1.10</tag>
<tag>v0.1.11</tag>
<url>https://github.com/s-expresso/clojobuf</url>
</scm>
<dependencies>
Expand All @@ -23,6 +23,11 @@
<artifactId>clojurescript</artifactId>
<version>1.11.60</version>
</dependency>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>test.check</artifactId>
<version>0.10.0</version>
</dependency>
<dependency>
<groupId>com.google.javascript</groupId>
<artifactId>closure-compiler-unshaded</artifactId>
Expand Down

0 comments on commit 0833c94

Please sign in to comment.