Skip to content

Commit

Permalink
publish packages with renames
Browse files Browse the repository at this point in the history
  • Loading branch information
brainkim committed Aug 24, 2019
1 parent 14dffe0 commit 5ae0fd6
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 11 deletions.
20 changes: 13 additions & 7 deletions CHANGELOG.md
@@ -1,18 +1,24 @@
# Changelog
## [timers@0.3.0] - 2019-08-24
## [limiters@0.3.0] - 2019-08-24
## [pubsub@0.3.0] - 2019-08-24
## [repeater@2.0.0] - 2019-08-24
### Changed
- Renamed all instances of `Channel` to `Repeater` e.g. `Channel` to `Repeater, `ChannelBuffer` to `RepeaterBuffer`

## [timers@0.2.1] - 2019-08-09
## [timers@0.2.1] - 2019-06-09
### Fixed
- Fixed timers using the wrong version of @channel/channel

## [limiters@0.2.1] - 2019-08-09
## [limiters@0.2.1] - 2019-06-09
### Fixed
- Fixed limiters using the wrong version of @channel/channel

## [pubsub@0.2.1] - 2019-08-09
## [pubsub@0.2.1] - 2019-06-09
### Fixed
- Fixed pubsub using the wrong version of @channel/channel

## [channel@1.0.0] - 2019-08-09
## [channel@1.0.0] - 2019-06-09
### Added
- The `Channel` class now exposes the static methods `Channel.race`, `Channel.merge`, `Channel.zip` and `Channel.latest` (#4).
### Changed
Expand All @@ -27,12 +33,12 @@
- The final iteration result/errors are now consumed by iterator methods.
- `return`/`throw` behave more like the methods do for `async generators`.

## [timers@0.2.0] - 2019-08-09
## [timers@0.2.0] - 2019-06-09
### Changed
- `delay` now returns an channel which can be reused
- `timeout` returns a channel

## [limiters@0.2.0] - 2019-08-09
## [limiters@0.2.0] - 2019-06-09
### Added
- throttler can now be passed a `cooldown` boolean option which forces the channel to wait before yielding the final token.
### Changed
Expand All @@ -42,7 +48,7 @@
### Fixed
- throttler now uses a sliding window to limit (#1).

## [pubsub@0.2.0] - 2019-08-09
## [pubsub@0.2.0] - 2019-06-09
### Changed
- type definitions have changed slightly

Expand Down
2 changes: 1 addition & 1 deletion packages/limiters/package.json
@@ -1,6 +1,6 @@
{
"name": "@repeaterjs/limiters",
"version": "0.2.1",
"version": "0.3.0",
"description": "Basic async iterators functions for limiting concurrency",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/pubsub/package.json
@@ -1,6 +1,6 @@
{
"name": "@repeaterjs/pubsub",
"version": "0.2.1",
"version": "0.3.0",
"description": "A generic pubsub class, implemented with repeaters",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/repeater/package.json
@@ -1,6 +1,6 @@
{
"name": "@repeaterjs/repeater",
"version": "1.0.0",
"version": "2.0.0",
"description": "The missing constructor function for creating safe async iterators",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/timers/package.json
@@ -1,6 +1,6 @@
{
"name": "@repeaterjs/timers",
"version": "0.2.1",
"version": "0.3.0",
"description": "Async iterator timer functions",
"repository": {
"type": "git",
Expand Down

0 comments on commit 5ae0fd6

Please sign in to comment.