Skip to content

Commit

Permalink
tagged 2.0.0-beta.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Ralph Huwiler committed Feb 25, 2019
1 parent 570eac6 commit 9f4edd0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Added
- Transformers can now be automatically resolved when passed by name.
- The `Adonis/Addons/Bumblebee/TransformerAbstract` class now has a shorter alias to `Bumblebee/Transformer`.
- Multiple transform methods can be defined and used with the new Transformer Variants feature.

### Deprecated
- The `toArray()` method was marked as deprecated.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ method and adds the book summary to the result.
Now we can use this variant by specifing it as follows:

```js
return transform.collection(books, 'App/Transformers/BookTransformer.withSummary')
return transform.collection(books, 'BookTransformer.withSummary')
```


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "adonis-bumblebee",
"version": "2.0.0-beta.1",
"version": "2.0.0-beta.2",
"description": "Api Transformer Provider for AdonisJs Framework",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 9f4edd0

Please sign in to comment.