Skip to content

Commit

Permalink
update version to v3.0.0-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
shamansir committed Feb 16, 2017
1 parent 778a1e5 commit 5555222
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 8 deletions.
45 changes: 44 additions & 1 deletion CHANGES
@@ -1,8 +1,47 @@
v3.0.0-alpha

* add `Rpd.d3` as a unique way to access `d3` or `d3_tiny` (breaking)
* Remove `/vendor` dependencies and move to `/node_modules` (breaking)

v2.1.3

Summaries the versions v2.1.0, v2.1.1, v2.1.2 and v2.1.3.

The corresponding milestone is [v2.1.x](https://github.com/shamansir/rpd/milestone/9?closed=1)

* Now we're at NPM: https://www.npmjs.com/package/rpd/
* Flow type definitions: (PR https://github.com/shamansir/rpd/pull/409)
* Ability to configure node body (PR https://github.com/shamansir/rpd/pull/415)
* New styles, Ableton and Ableton-out (PR https://github.com/shamansir/rpd/pull/397)
* Visual History (PR https://github.com/shamansir/rpd/pull/397)
* `util/dial` node
* Different fixes

v2.0.1

All the changes `v2.0.0` has:
- Better UI;
- Massive API changes and improvements in the sake of consistency;
- Ability to connect patches ("models", maiden name) and navigate between them;
- Simplified renderers;
- SVG Renderer;
- Import/Export;
- Quartz & PD "modes" are now separate "styles" (which reduces resulting file size);
- Improved building, with Gulp;
- [And much more...](https://github.com/shamansir/rpd/milestone/1?closed=1)

`v2.0.1` [adds](https://github.com/shamansir/rpd/compare/v2.0...v2.0.1):
- Minor styling and rendering fixes
- Update to Kefir v3.3.0
- Update to d3 v4.0

**NB:** No binaries, since user is intended to compile personal RPD version with preferred options.

v2.0

* Tons of changes, will be listed later

v1.5
v0.1.5

* Added tests, running with Jasmine and Karma
* Updated to Kefir 2.6
Expand All @@ -12,3 +51,7 @@ v1.5
* Added `render` objects to corresponding events so they use them instead of
asking node/channel instances for this object
* Node updates are fired only after `node/ready` event

v0.1.0


14 changes: 10 additions & 4 deletions README.md
@@ -1,4 +1,4 @@
# RPD — Reactive Patch Development v2.0.0
# RPD — Reactive Patch Development v3.x

**Official Documentation & Examples**: [http://shamansir.github.io/rpd](http://shamansir.github.io/rpd)

Expand All @@ -12,13 +12,19 @@
<img src="https://rawgit.com/shamansir/rpd/v2.0.0/docs/rpd.svg" width="140px" height="140px" />
</a>

**[Releases](https://github.com/shamansir/rpd/releases)**

**[Opened Milestones](https://github.com/shamansir/rpd/milestones?state=opened)**

**[Closed Milestones](https://github.com/shamansir/rpd/milestones?state=closed)**

**Latest Stable Version**: [v2.0.1](https://github.com/shamansir/rpd/releases/tag/v2.0.1)
**Latest Stable Version**: [v2.1.3](https://github.com/shamansir/rpd/releases/tag/v2.1.3)

_Version in development_: [v3.x](https://github.com/shamansir/rpd/milestone/11).

_Version in development_: [v2.1.0](https://github.com/shamansir/rpd/milestone/9).
(no [semantic versioning](http://semver.org/) was used before v2.0)

_Previous Stable Version_: [v0.1.5](https://github.com/shamansir/rpd/releases/tag/v0.1.5). (no [semantic versioning](http://semver.org/) was used before v2.0)
**[NPM](https://www.npmjs.com/package/rpd/)**

A video of the engine v0.1.0 in action, demonstrates some of its features: [ [Watch][video] ].

Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
2.0.0
3.0.0-alpha
2 changes: 1 addition & 1 deletion docs/config.json
@@ -1,5 +1,5 @@
{
"version": "v2.0.0",
"version": "v3.x",
"contents": {
"introduction": {
"title": "Introduction",
Expand Down
2 changes: 1 addition & 1 deletion src/rpd.js
Expand Up @@ -6,7 +6,7 @@ if ((typeof Kefir === 'undefined') &&
(typeof require !== 'undefined')) Kefir = require('kefir');
if (!Kefir) throw new Error('Kefir.js (https://github.com/rpominov/kefir) is required for Rpd to work');

var VERSION = 'v2.1.1';
var VERSION = 'v3.0.0-alpha';

var Rpd = (function() {

Expand Down

0 comments on commit 5555222

Please sign in to comment.