Skip to content

Commit

Permalink
Changelog, bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
DirtyHairy committed Mar 11, 2024
1 parent 3b8ae6f commit ca071fc
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 0.5.0

* Support priority queueing for mutexes and semaphores. A huge "thank you"
goes to @dmurvihill who added this feature.
* Update dependencies.

## 0.4.1

* Expand documentation and fix a few errors.
Expand Down Expand Up @@ -38,7 +44,7 @@ This is a full rewrite of the core implementation.
0.4.0.

I don't like breaking existing APIs, but using those methods is inherently
dangerous as they can accidentially release locks acquired in a completely
dangerous as they can accidentally release locks acquired in a completely
different place. Furthermore, they are mostly useless for semaphores. I consider
adding them an unfortunate mistake on my end.

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": "async-mutex",
"version": "0.4.1",
"version": "0.5.0",
"description": "A mutex for guarding async workflows",
"scripts": {
"lint": "eslint src/**/*.ts test/**/*.ts",
Expand Down

0 comments on commit ca071fc

Please sign in to comment.