Skip to content

Commit

Permalink
0.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanve committed Mar 15, 2014
1 parent e8d8a96 commit 43c8675
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
15 changes: 8 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Changelog

- Browse/download the [current](./) or [previous versions](../../tags).
- Compare [version tags](../../tags) like [0.6.1...0.7.7](../../compare/0.6.1...0.7.7)
- Browse/download the [current](./) or [previous versions](../../releases).
- Compare [version tags](../../tags) like [0.6.1...0.7.13](../../compare/0.6.1...0.7.13)

## 0.8.0
- Use [grunt](GruntFile.js) to lint and create builds
- Remove deprecated [filters](../../tree/0.7.13#filters)
- Remove deprecated [`.chain()`](../../commit/814713da826d47b38b7d6393ca366fe9a948df4d) method

## [0.7.0](../../tree/0.7.0)
- Added [elo](http://github.com/ryanve/elo) as a compatible framework.
Expand All @@ -11,8 +16,6 @@
- Added thisArg functionality to `Response.each` / `Response.route` / `Response.sift`
- Added typestring functionality to `Response.sift` (e.g. `Response.sift(arr, "string")` filters for `typeof` string only)
- `Response.map` now delegates to native `[].map` when available and emulates it otherwise.
- Removed excess element references in breakpoint set objects.
- Removed uneeded memoization in breakpoint sets.

## [0.6.1](../../tree/0.6.1) (2012-07-19)
- Allow for empty breakpoints like `data-r961=""` to work as expected. ([See #12](../../issues/12))
Expand Down Expand Up @@ -61,9 +64,7 @@ Aliasing is the recommended way to backsupport the separate prefixes previously

```html
<body data-responsejs='{
"create": { "prop": "width"
, "prefix": "min-width- r src"
, "breakpoints": [1281,1025,961,641,481,320,0] }
"create": { "prop": "width", "prefix": "min-width- r src", "breakpoints": [961, 641, 481, 0] }
}'>
```

Expand Down
5 changes: 1 addition & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Response
[Response](http://responsejs.com) is an experimental [jQuery](http://jquery.com)/[Ender](https://github.com/ender-js/Ender)/[Zepto](http://zeptojs.com) plugin that gives web designers performant tools for building responsive websites. It can dynamically swap content based on [breakpoints](#breakpoint-sets) and data attributes.
<b>Response</b> is an experimental [jQuery](http://jquery.com)/[Ender](https://github.com/ender-js/Ender)/[Zepto](http://zeptojs.com) plugin that gives web designers performant tools for building responsive websites. It can dynamically swap content based on [breakpoints](#breakpoint-sets) and data attributes. (<b>npm</b>: [response.js](https://www.npmjs.org/package/response.js))

## API ([0.8](../../releases))

Expand Down Expand Up @@ -185,14 +185,11 @@ Response.noConflict(function(Response){
#### [AMD](https://github.com/amdjs/amdjs-api/wiki/AMD) usage
```js
// see the source for more info on this
define(['jquery'], Response.noConflict); // define module and destroy global
```
## Resources
- [Website](http://responsejs.com/)
- [Test Suite](http://responsejs.com/test/)
- [Issues](../../issues)
- [Wiki](../../wiki)
Expand Down

0 comments on commit 43c8675

Please sign in to comment.