Skip to content

Commit

Permalink
2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
j3tan committed Nov 18, 2015
1 parent dfcc098 commit fb3a9df
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 5 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
v2.0.0 - November 18, 2015

* 2.0.0 (Jeff Tan)
* Add separate file header for testing package (Jeff Tan)
* Fixing spaces in build script (Jeff Tan)
* Return singleton service instance when getService is called on pre-registered services (Jeff Tan)
* Add mousemove to allowed event types (Jeff Tan)
* Update README.md (Jeff Tan)
* Remove service exports from T3 (Jeff Tan)
* Update Readme for 2.0.0 release and add auto-version updating (Jeff Tan)
* Add hasService() to context object (Jeff Tan)
* [Breaking] Add allowedServiceList to TestServiceProvider (Jeff Tan)
* Use jQuery instead of $ for dom event delegation (Jeff Tan)
* Add linting to test directory (Jeff Tan)
* Breaking: Initialize behaviors before module (Jeff Tan)
* Change getService() to throw error when requesting non-existent service. Add hasService() method. (Jeff Tan)
* Bind event handlers after init() is called (Jeff Tan)
* Throw error when duplicate behaviors are included (Jeff Tan)
* Revert "Check for circular dependencies only during instantiation of service" (Denis Rodin)
* Check for circular dependencies only during instantiation of service (Denis Rodin)
* Check for circular dependencies only during instantiation of service (Denis Rodin)
* Breaking: Use NativeDOM by default (fixes #76) (Nicholas C. Zakas)
* Build: Upgrade ESLint (fixes #90) (Nicholas C. Zakas)

v1.5.1 - August 10, 2015

* 1.5.1 (Nicholas C. Zakas)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@ The last published release:

```
<!-- Recommended: Latest version of T3 -->
<script src="https://cdn.rawgit.com/box/t3js/v1.5.1/dist/t3.js"></script>
<script src="https://cdn.rawgit.com/box/t3js/v2.0.0/dist/t3.js"></script>
<!-- Recommended: Latest minified version of T3 -->
<script src="https://cdn.rawgit.com/box/t3js/v1.5.1/dist/t3.min.js"></script>
<script src="https://cdn.rawgit.com/box/t3js/v2.0.0/dist/t3.min.js"></script>
<!-- jQuery version (IE8 + 1.8.0+ jQuery) -->
<script src="https://cdn.rawgit.com/box/t3js/v1.5.1/dist/t3-jquery.js"></script>
<script src="https://cdn.rawgit.com/box/t3js/v2.0.0/dist/t3-jquery.js"></script>
<!-- jQuery minified version (IE8 + 1.8.0+ jQuery) -->
<script src="https://cdn.rawgit.com/box/t3js/v1.5.1/dist/t3-jquery.min.js"></script>
<script src="https://cdn.rawgit.com/box/t3js/v2.0.0/dist/t3-jquery.min.js"></script>
```
## Upgrade from 1.5.1 to 2.0.0

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "t3js",
"description": "T3 Javascript Framework",
"version": "1.5.1",
"version": "2.0.0",
"author": "Box (https://www.box.com/)",
"files": [
"LICENSE",
Expand Down

0 comments on commit fb3a9df

Please sign in to comment.