Skip to content

Commit 0f9c834

Browse files
committed
🏹 Alpha 1 Release
1 parent 90a7cdc commit 0f9c834

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
For TODO between alpha and release, see https://github.com/knockout/tko/issues/1
22

3+
## 🐋 Alpha-2 ( Work in progress on the `master` branch )
34

4-
## 🏹 Alpha-1 ( Work in progress on the `master` branch )
55

6-
* Fix negation operator (-) application - integers `-1` work, as well as variables `-x` and expressions `-(x + y)`
6+
## 🏹 Alpha-1 (20 Dec 2016)
7+
8+
* Fix negation operator (-) application - integers/floats e.g. `-1` work, as well as variables `-x` and expressions `-(x + y)`
79
* Use tko.binding.foreach for the `foreach` binding (based on brianmhunt/knockout-fast-foreach)
810
* Add `each` as an alias of `foreach`
911

dist/ko.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8514,7 +8514,7 @@ extend(options.filters, filters);
85148514
// Expose the API.
85158515
var index = {
85168516
// --- Top-level ---
8517-
version: '4.0.0-alpha0',
8517+
version: '4.0.0-alpha1',
85188518
options: options,
85198519

85208520
extenders: extenders,

dist/tko.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8514,7 +8514,7 @@ extend(options.filters, filters);
85148514
// Expose the API.
85158515
var index = {
85168516
// --- Top-level ---
8517-
version: '4.0.0-alpha0',
8517+
version: '4.0.0-alpha1',
85188518
options: options,
85198519

85208520
extenders: extenders,

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ utils.extend(options.filters, punchesFilters);
150150
// Expose the API.
151151
export default {
152152
// --- Top-level ---
153-
version: '4.0.0-alpha0',
153+
version: '4.0.0-alpha1',
154154
options: options,
155155

156156
extenders: extenders,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "tko",
33
"description": "TKO is an experimental fork of Knockout",
44
"homepage": "http://knockoutjs.com/",
5-
"version": "4.0.0-alpha0",
5+
"version": "4.0.0-alpha1",
66
"license": "MIT",
77
"author": "The Knockout.js Team",
88
"main": "dist/knockout-latest.debug.js",

0 commit comments

Comments
 (0)