Skip to content

Commit

Permalink
[fr33m0nk]: Prepare for new release
Browse files Browse the repository at this point in the history
  • Loading branch information
fr33m0nk committed Feb 23, 2024
1 parent afa0c19 commit 1d27fff
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 13 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,32 +30,32 @@ For further documentation, do refer [Alpakka Kafka official docs](https://doc.ak

- **CLI/deps.edn dependency information**
```clojure
net.clojars.fr33m0nk/clj-alpakka-kafka {:mvn/version "0.1.7"}
net.clojars.fr33m0nk/clj-alpakka-kafka {:mvn/version "0.1.8"}
```

- **Leningen/Boot**
```clojure
[net.clojars.fr33m0nk/clj-alpakka-kafka "0.1.7"]
[net.clojars.fr33m0nk/clj-alpakka-kafka "0.1.8"]
```

- **Maven**
```xml
<dependency>
<groupId>net.clojars.fr33m0nk</groupId>
<artifactId>clj-alpakka-kafka</artifactId>
<version>0.1.7</version>
<version>0.1.8</version>
</dependency>
```

- **Gradle**
```groovy
implementation("net.clojars.fr33m0nk:clj-alpakka-kafka:0.1.7")
implementation("net.clojars.fr33m0nk:clj-alpakka-kafka:0.1.8")
```

### Additional dependencies:
- Kafka Client ([any compatible version is fine](https://doc.akka.io/docs/alpakka-kafka/current/home.html))
```clojure
org.apache.kafka/kafka-clients {:mvn/version "3.3.2"}
org.apache.kafka/kafka-clients {:mvn/version "3.6.1"}
```
- SLF4J implentation based logger
- Needed for Akka logging
Expand Down
2 changes: 1 addition & 1 deletion build.clj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[deps-deploy.deps-deploy :as dd]))

(def lib 'net.clojars.fr33m0nk/clj-alpakka-kafka)
(def version "0.1.7")
(def version "0.1.8")
#_; alternatively, use MAJOR.MINOR.COMMITS:
(def version (format "1.0.%s" (b/git-count-revs nil)))
(def class-dir "target/classes")
Expand Down
9 changes: 2 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.clojars.fr33m0nk</groupId>
<artifactId>clj-alpakka-kafka</artifactId>
<version>0.1.7</version>
<version>0.1.8</version>
<name>clj-alpakka-kafka</name>
<description>Clojure wrapper for Alpakka Kafka.</description>
<url>https://github.com/fr33m0nk/clj-alpakka-kafka</url>
Expand All @@ -22,14 +22,9 @@
<url>https://github.com/fr33m0nk/clj-alpakka-kafka</url>
<connection>scm:git:git://github.com/fr33m0nk/clj-alpakka-kafka.git</connection>
<developerConnection>scm:git:ssh://git@github.com/fr33m0nk/clj-alpakka-kafka.git</developerConnection>
<tag>v0.1.7</tag>
<tag>v0.1.8</tag>
</scm>
<dependencies>
<dependency>
<groupId>org.clojure</groupId>
<artifactId>clojure</artifactId>
<version>1.10.3</version>
</dependency>
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
Expand Down

0 comments on commit 1d27fff

Please sign in to comment.