Skip to content

Commit

Permalink
chore: cut 0.7.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
tzellman committed Feb 4, 2021
1 parent 0e2970b commit 352c8ba
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 14 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## 0.7.0

This is a minor release with no new features added.

- Upgraded to ember/ember-cli 3.24
- `prettier` integration and linting fixes
- Removed usage of Travis and added Github Actions integration
- Fixed `transition-to` helper to use `router` service instead of deprecated `router:main`

## 0.6.0

- Now dependent on Ember (&CLI) 3.20
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,7 @@ ember install ember-reactive-helpers

## Introduction

Reactive helpers are helpers that return functions. These functions can be bound to event handlers
to process data on the way up in the Data Down Actions Up cycle. The `r` helper makes it possible to use
[`ember-composable-helpers`](https://github.com/DockYard/ember-composable-helpers) in event handlers where execution of the helper is delayed until the event is triggered.
Reactive helpers are helpers that return functions. These functions can be bound to event handlers to process data on the way up in the Data Down Actions Up cycle. The `r` helper makes it possible to use [`ember-composable-helpers`](https://github.com/DockYard/ember-composable-helpers) in event handlers where execution of the helper is delayed until the event is triggered.

## Helpers

Expand Down Expand Up @@ -64,6 +62,7 @@ The `(r/get)` helper returns a function. When called, the function will return t
{{compute (r/param) 'hello' 'world'}} {{! //=> 'hello'}}
{{compute (r/param 1) 'hello' 'world'}} {{! //=> 'world'}}
```

### `(r/debugger)`

`(r/debugger)` will create a helper that will inject a debugger breakpoint into a helper pipe.
Expand All @@ -83,11 +82,11 @@ The `(r/log)` helper will evaluate to a function. When called, this function wil

### `(r/tap value)`

The `(r/tap value)` helper will evaluate to a function that will return the passed in argument.
The `(r/tap value)` helper will evaluate to a function that will return the passed in argument.

### `{{shhh anything}}`

The `{{shhh` helper will supress any output that's passed into it. This is useful when you want to compute a helper
The `{{shhh` helper will suppress any output that's passed into it. This is useful when you want to compute a helper
without having its output rendered.

### `(transition-to 'destination' model (query-params foo='bar'))`
Expand All @@ -105,13 +104,14 @@ The `(transition-to)` helper has the same argument signature as `link-to` but ev
- ### [Changelog](CHANGELOG.md)

## Looking for help?

If you encounter a bug [please open an issue on GitHub](https://github.com/EmberSherpa/ember-reactive-helpers/issues).

## Compatibility

- Ember.js v3.12 or above
- Ember CLI v2.13 or above
- Node.js v10 or above
- Ember.js v3.12 or above
- Ember CLI v2.13 or above
- Node.js v10 or above

## Contributing

Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ember-reactive-helpers",
"version": "0.6.0",
"version": "0.7.0",
"description": "Collection of helpers to aid in reactive template programming with Ember.js",
"keywords": [
"ember-addon",
Expand Down Expand Up @@ -48,7 +48,7 @@
"ember-cli-babel": "^7.23.0",
"ember-cli-htmlbars": "^5.3.1",
"ember-cli-string-helpers": "^5.0.0",
"ember-composable-helpers": "^4.3.0",
"ember-composable-helpers": "^4.4.1",
"ember-concurrency": "~1.3.0"
},
"devDependencies": {
Expand Down

0 comments on commit 352c8ba

Please sign in to comment.