aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBartek Szopka <bartek.szopka+github@gmail.com>2012-03-20 21:37:08 +0000
committerBartek Szopka <bartek.szopka+github@gmail.com>2012-03-20 21:37:08 +0000
commit88662339a96563cba0b7e10884f8e42bb92081c5 (patch)
treeaa731c6022758880842620ee32fedfc7c1b2c02d
parent10b14ba7681d7ff1e0f6a8097ae80750180967c2 (diff)
downloadimpress.js-88662339a96563cba0b7e10884f8e42bb92081c5.tar.gz
release 0.5
-rw-r--r--README.md12
-rw-r--r--js/impress.js2
2 files changed, 10 insertions, 4 deletions
diff --git a/README.md b/README.md
index 1f082a8..23eed6c 100644
--- a/README.md
+++ b/README.md
@@ -21,9 +21,7 @@ VERSION HISTORY
-----------------
-### 0.5dev
-
-**CURRENTLY IN DEVELOPMENT**
+### 0.5 ([browse](http://github.com/bartaz/impress.js/tree/0.5), [zip](http://github.com/bartaz/impress.js/zipball/0.5), [tar](http://github.com/bartaz/impress.js/tarball/0.5))
#### CHANGELOG
@@ -48,6 +46,14 @@ VERSION HISTORY
* and if it's not enough, `goto()` also accepts second parameter to define the transition duration in ms, for example
`impress().goto("make-it-quick", 300)` or `impress().goto("now", 0)`
+#### UPGRADING FROM PREVIOUS VERSIONS
+
+Version 0.4 changed `goto` API method into `stepTo`. It turned out that `goto` is not a reserved word anymore, so it
+can be used in JavaScript. That's why version 0.5 brings it back and removes `stepTo`.
+
+So if you have been using version 0.4 and have any reference to `stepTo` API method make sure to change it to `goto`.
+
+
### 0.4.1 ([browse](http://github.com/bartaz/impress.js/tree/0.4.1), [zip](http://github.com/bartaz/impress.js/zipball/0.4.1), [tar](http://github.com/bartaz/impress.js/tarball/0.4.1))
diff --git a/js/impress.js b/js/impress.js
index ccd685d..5dd20f3 100644
--- a/js/impress.js
+++ b/js/impress.js
@@ -11,7 +11,7 @@
*
* ------------------------------------------------
* author: Bartek Szopka
- * version: 0.5dev (currently in development)
+ * version: 0.5
* url: http://bartaz.github.com/impress.js/
* source: http://github.com/bartaz/impress.js/
*/