Skip to content
This repository has been archived by the owner on Jan 6, 2023. It is now read-only.

Commit

Permalink
Mark version 0.14.6
Browse files Browse the repository at this point in the history
  • Loading branch information
solatis committed Aug 31, 2019
1 parent 02a0ef0 commit 74f9ae5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
Available on Clojars:

```
[org.onyxplatform/onyx "0.14.6-SNAPSHOT"]
[org.onyxplatform/onyx "0.14.6"]
```

### Changelog
Expand Down Expand Up @@ -102,25 +102,25 @@ Some plugins are currently unsupported in onyx 0.14.x. These are:

Feeling impatient? Hit the ground running ASAP with the [onyx-starter repo](https://github.com/onyx-platform/onyx-starter) and [walkthrough](https://github.com/onyx-platform/onyx-starter/blob/master/WALKTHROUGH.md). You can also boot into preloaded a Leiningen [application template](https://github.com/onyx-platform/onyx-template).

### User Guide 0.14.6-SNAPSHOT
### User Guide 0.14.6

- [User Guide Table of Contents](http://www.onyxplatform.org/docs)
- [API docs](http://www.onyxplatform.org/docs/api/latest)
- [Cheat Sheet](http://www.onyxplatform.org/docs/cheat-sheet/latest)

### Developer's Guide 0.14.6-SNAPSHOT
### Developer's Guide 0.14.6

- [Branch Policy](doc/developers-guide/branch-policy.md)
- [Release Checklist](doc/developers-guide/release-checklist.md)
- [Deployment Process](doc/developers-guide/deployment-process.md)

### API Docs 0.14.6-SNAPSHOT
### API Docs 0.14.6

Code level API documentation [can be found here](http://www.onyxplatform.org/docs/api/0.14.6-SNAPSHOT).
Code level API documentation [can be found here](http://www.onyxplatform.org/docs/api/0.14.6).

### Official plugin listing

Official plugins are vetted by Michael Drogalis. Ensure in your project that plugin versions directly correspond to the same Onyx version (e.g. `onyx-kafka` version `0.14.6-SNAPSHOT.0-SNAPSHOT` goes with `onyx` version `0.14.6-SNAPSHOT`). Fixes to plugins can be applied using a 4th versioning identifier (e.g. `0.14.6-SNAPSHOT.1-SNAPSHOT`).
Official plugins are vetted by Michael Drogalis. Ensure in your project that plugin versions directly correspond to the same Onyx version (e.g. `onyx-kafka` version `0.14.6.0-SNAPSHOT` goes with `onyx` version `0.14.6`). Fixes to plugins can be applied using a 4th versioning identifier (e.g. `0.14.6.1-SNAPSHOT`).

- [`onyx-core-async`](doc/user-guide/core-async-plugin.adoc)
- [`onyx-kafka`](https://github.com/onyx-platform/onyx-kafka)
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject org.onyxplatform/onyx "0.14.5"
(defproject org.onyxplatform/onyx "0.14.6"
:description "Distributed, masterless, high performance, fault tolerant data processing for Clojure"
:url "https://github.com/onyx-platform/onyx"
:license {:name "Eclipse Public License"
Expand Down
2 changes: 1 addition & 1 deletion scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ else
OLD_BRANCH=$2
NEW_BRANCH=$3

grep "$OLD_VERSION" README.MD || (echo "Version string $1 was not found in README" && exit 1)
grep "$OLD_VERSION" README.md || (echo "Version string $1 was not found in README" && exit 1)

lein set-version $NEW_VERSION
sed -i.bak "s/$OLD_VERSION/$NEW_VERSION/g" README.md
Expand Down

0 comments on commit 74f9ae5

Please sign in to comment.