Skip to content

Commit a2f8a9d

Browse files
committed
Bump release version
1 parent a6121a3 commit a2f8a9d

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Change Log
22
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).
33

4-
## Unreleased
4+
## [0.1.7-alpha] - 2025-08-13
55

66
### Added
77
- Voice Activity Detection protocols that the transport-in processors can use. [See protocol here](./src/simulflow/vad/core.clj)

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,14 @@ Simulflow, [Dune Wiki](https://dune.fandom.com/wiki/Bene_Gesserit_Training#Simul
6262

6363
```clojure
6464
;; Add to your deps.edn
65-
{:deps {com.shipclojure/simulflow {:mvn/version "0.1.6-alpha"}}}
65+
{:deps {com.shipclojure/simulflow {:mvn/version "0.1.7-alpha"}}}
6666
```
6767

6868
### Leiningen/Boot
6969

7070
```clojure
7171
;; Add to your project.clj
72-
[com.shipclojure/simulflow "0.1.6-alpha"]
72+
[com.shipclojure/simulflow "0.1.7-alpha"]
7373
```
7474

7575
### Maven
@@ -78,7 +78,7 @@ Simulflow, [Dune Wiki](https://dune.fandom.com/wiki/Bene_Gesserit_Training#Simul
7878
<dependency>
7979
<groupId>com.shipclojure</groupId>
8080
<artifactId>simulflow</artifactId>
81-
<version>0.1.6-alpha</version>
81+
<version>0.1.7-alpha</version>
8282
</dependency>
8383
```
8484

build.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[deps-deploy.deps-deploy :as dd]))
77

88
(def lib 'com.shipclojure/simulflow)
9-
(def version "v0.1.6-alpha")
9+
(def version "v0.1.7-alpha")
1010
#_ ; alternatively, use MAJOR.MINOR.COMMITS:
1111
(def version (format "1.0.%s" (b/git-count-revs nil)))
1212
(def class-dir "target/classes")

deps.edn

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@
1414

1515
:pom {:group-id "com.shipclojure"
1616
:artifact-id "simulflow"
17-
:version "0.1.6-alpha"
17+
:version "0.1.7-alpha"
1818
:name "simulflow"
1919
:description "A Clojure framework for building real-time voice-enabled AI applications"
2020
:url "https://github.com/shipclojure/simulflow"
2121
:scm {:url "https://github.com/shipclojure/simulflow"
22-
:tag "v0.1.6-alpha"
22+
:tag "v0.1.7-alpha"
2323
:connection "scm:git:git://github.com/shipclojure/simulflow.git"
2424
:dev-connection "scm:git:ssh://git@github.com/shipclojure/simulflow.git"}
2525
:licenses [{:name "Eclipse Public License"
@@ -70,4 +70,4 @@
7070
:exec-fn deps-deploy.deps-deploy/deploy
7171
:exec-args {:installer :remote
7272
:sign-releases? false
73-
:artifact "target/com.shipclojure/simulflow-v0.1.6-alpha.jar"}}}}
73+
:artifact "target/com.shipclojure/simulflow-v0.1.7-alpha.jar"}}}}

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
<url>https://github.com/shipclojure/simulflow</url>
2323
<connection>scm:git:git://github.com/shipclojure/simulflow.git</connection>
2424
<developerConnection>scm:git:ssh://git@github.com/shipclojure/simulflow.git</developerConnection>
25-
<tag>v0.1.6-alpha</tag>
25+
<tag>v0.1.7-alpha</tag>
2626
</scm>
27-
<version>v0.1.6-alpha</version>
27+
<version>v0.1.7-alpha</version>
2828
<build>
2929
<sourceDirectory>src</sourceDirectory>
3030
</build>

0 commit comments

Comments
 (0)