Skip to content

Commit

Permalink
Merge pull request #18 from ably-forks/release/1.0.2
Browse files Browse the repository at this point in the history
Release 1.0.2
  • Loading branch information
owenpearson authored Dec 9, 2022
2 parents cbe33f5 + 6b8b8c8 commit d86b6f4
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 10 deletions.
17 changes: 9 additions & 8 deletions .github/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,16 @@ This library uses [semantic versioning](http://semver.org/). For each release, t

1. Create a new branch for the release, named like `release/1.2.4` (where `1.2.4` is what you're releasing, being the new version)
2. Update the `LIB_VERSION` in `src/connector/ably-connector.ts`.
3. Run [`github_changelog_generator`](https://github.com/skywinder/Github-Changelog-Generator) to automate the update of the [CHANGELOG-ABLY.md](../CHANGELOG-ABLY.md). Once the `CHANGELOG-ABLY` update has completed, manually change the `Unreleased` heading and link with the current version number such as `1.2.4`. Also ensure that the `Full Changelog` link points to the new version tag instead of the `HEAD`.
4. Commit generated [CHANGELOG-ABLY.md](../CHANGELOG-ABLY.md) file at root.
5. Make a PR against `main`.
6. Once the PR is approved, merge it into `main`.
7. Add a tag and push it to origin - e.g.: `git tag ably-echo-1.2.4
3. Run `npm version {NEW_VERSION_NUMBER} --no-git-tag-version`
4. Run [`github_changelog_generator`](https://github.com/skywinder/Github-Changelog-Generator) to automate the update of the [CHANGELOG-ABLY.md](../CHANGELOG-ABLY.md). Once the `CHANGELOG-ABLY` update has completed, manually change the `Unreleased` heading and link with the current version number such as `1.2.4`. Also ensure that the `Full Changelog` link points to the new version tag instead of the `HEAD`.
5. Commit generated [CHANGELOG-ABLY.md](../CHANGELOG-ABLY.md) file at root.
6. Make a PR against `main`.
7. Once the PR is approved, merge it into `main`.
8. Add a tag and push it to origin - e.g.: `git tag ably-echo-1.2.4
&& git push origin ably-echo-1.2.4`.
8. Publish npm package on npmjs.com.
9. Visit https://github.com/ably-forks/laravel-echo/tags and add release notes to the release (generally you can just copy the notes you added to the CHANGELOG).
10. Update the [Ably Changelog](https://changelog.ably.com/) (via [headwayapp](https://headwayapp.co/)) with these changes (again, you can just copy the notes you added to the CHANGELOG).
9. Publish npm package on npmjs.com.
10. Visit https://github.com/ably-forks/laravel-echo/tags and add release notes to the release (generally you can just copy the notes you added to the CHANGELOG).
11. Update the [Ably Changelog](https://changelog.ably.com/) (via [headwayapp](https://headwayapp.co/)) with these changes (again, you can just copy the notes you added to the CHANGELOG).

## Note
- Current `README` is newly created and located under `.github/README.md`.
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG-ABLY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [v1.0.2](https://github.com/ably-forks/laravel-echo/tree/ably-echo-1.0.2)

[Full Changelog](https://github.com/ably-forks/laravel-echo/compare/ably-echo-1.0.1...ably-echo-1.0.2)

**Merged pull requests:**

- Sync changes from upstream laravel echo [\#17](https://github.com/ably-forks/laravel-echo/pull/17) ([sacOO7](https://github.com/sacOO7))
- Fixed presence here method callback data set [\#16](https://github.com/ably-forks/laravel-echo/pull/16) ([sacOO7](https://github.com/sacOO7))

## [v1.0.1](https://github.com/ably-forks/laravel-echo/tree/ably-echo-1.0.1)

[Full Changelog](https://github.com/ably-forks/laravel-echo/compare/ably-echo-1.0.0...ably-echo-1.0.1)
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": "@ably/laravel-echo",
"version": "1.0.1",
"version": "1.0.2",
"description": "Laravel Echo library for beautiful Ably integration",
"keywords": [
"laravel",
Expand Down
2 changes: 1 addition & 1 deletion src/connector/ably-connector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export class AblyConnector extends Connector {
/**
* The laravel-echo library version.
*/
static LIB_VERSION = '1.0.1';
static LIB_VERSION = '1.0.2';

/**
* The Ably instance.
Expand Down

0 comments on commit d86b6f4

Please sign in to comment.