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

Commit

Permalink
Prepare for next release cycle.
Browse files Browse the repository at this point in the history
  • Loading branch information
lbradstreet committed Feb 27, 2019
1 parent 79610de commit 1bc402d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 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.3"]
[org.onyxplatform/onyx "0.14.4-SNAPSHOT"]
```

### Changelog
Expand All @@ -49,7 +49,7 @@ We provide a plugin template for use in building new plugins. This can be found
#### Plugin Use

To use the supported plugins, please use version coordinates such as
`[org.onyxplatform/onyx-amazon-sqs "0.14.3.0"]`, and read
`[org.onyxplatform/onyx-amazon-sqs "0.14.4-SNAPSHOT.0"]`, and read
the READMEs on the 0.14.x branches linked above.

### Build Status
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.3
### User Guide 0.14.4-SNAPSHOT

- [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.3
### Developer's Guide 0.14.4-SNAPSHOT

- [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.3
### API Docs 0.14.4-SNAPSHOT

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

### 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.3.0-SNAPSHOT` goes with `onyx` version `0.14.3`). Fixes to plugins can be applied using a 4th versioning identifier (e.g. `0.14.3.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.4-SNAPSHOT.0-SNAPSHOT` goes with `onyx` version `0.14.4-SNAPSHOT`). Fixes to plugins can be applied using a 4th versioning identifier (e.g. `0.14.4-SNAPSHOT.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.3"
(defproject org.onyxplatform/onyx "0.14.4-SNAPSHOT"
: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 src/onyx/peer/log_version.cljc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
(ns onyx.peer.log-version)

(def version "0.14.3")
(def version "0.14.4-SNAPSHOT")

(defn check-compatible-log-versions! [cluster-version]
(when-not (or (re-find #"-" version)
Expand Down

0 comments on commit 1bc402d

Please sign in to comment.