Skip to content

Commit

Permalink
Bumped version number to v1.3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
T99 committed Sep 14, 2021
1 parent 74587e4 commit 22d57bb
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@jsdsl/semaphore",
"version": "1.2.0",
"version": "1.3.0",
"description": "A Promise-based semaphore implementation.",
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion ts/semaphore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ type OutstandingLockMap = {
* have access to a given resource or set of resources.
*
* @author Trevor Sears <trevor@trevorsears.com> (https://trevorsears.com/)
* @version v1.1.0
* @version v1.3.0
* @since v0.1.0
*/
export class Semaphore {
Expand Down
16 changes: 16 additions & 0 deletions ts/tests/semaphore.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@
* Created by Trevor Sears <trevor@trevorsears.com> (https://trevorsears.com/).
* 8:33 AM -- September 14th, 2021
* Project: @jsdsl/semaphore
*
* @jsdsl/semaphore - A Promise-based semaphore implementation.
* Copyright (C) 2021 Trevor Sears
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/

import { Semaphore } from "../semaphore";
Expand Down

0 comments on commit 22d57bb

Please sign in to comment.