From 22d57bb647ae9a387e4b5777ba8417d50304dc2c Mon Sep 17 00:00:00 2001 From: Trevor Sears Date: Tue, 14 Sep 2021 11:39:33 -0400 Subject: [PATCH] Bumped version number to `v1.3.0`. --- package.json | 2 +- ts/semaphore.ts | 2 +- ts/tests/semaphore.test.ts | 16 ++++++++++++++++ 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index fae5d41..7f9493d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@jsdsl/semaphore", - "version": "1.2.0", + "version": "1.3.0", "description": "A Promise-based semaphore implementation.", "publishConfig": { "access": "public" diff --git a/ts/semaphore.ts b/ts/semaphore.ts index 2993098..b5b8c67 100644 --- a/ts/semaphore.ts +++ b/ts/semaphore.ts @@ -38,7 +38,7 @@ type OutstandingLockMap = { * have access to a given resource or set of resources. * * @author Trevor Sears (https://trevorsears.com/) - * @version v1.1.0 + * @version v1.3.0 * @since v0.1.0 */ export class Semaphore { diff --git a/ts/tests/semaphore.test.ts b/ts/tests/semaphore.test.ts index 6ef2377..5bba650 100644 --- a/ts/tests/semaphore.test.ts +++ b/ts/tests/semaphore.test.ts @@ -2,6 +2,22 @@ * Created by Trevor Sears (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 . */ import { Semaphore } from "../semaphore";