Skip to content

Commit 22d57bb

Browse files
committed
Bumped version number to v1.3.0.
1 parent 74587e4 commit 22d57bb

3 files changed

Lines changed: 18 additions & 2 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jsdsl/semaphore",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"description": "A Promise-based semaphore implementation.",
55
"publishConfig": {
66
"access": "public"

ts/semaphore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ type OutstandingLockMap = {
3838
* have access to a given resource or set of resources.
3939
*
4040
* @author Trevor Sears <trevor@trevorsears.com> (https://trevorsears.com/)
41-
* @version v1.1.0
41+
* @version v1.3.0
4242
* @since v0.1.0
4343
*/
4444
export class Semaphore {

ts/tests/semaphore.test.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,22 @@
22
* Created by Trevor Sears <trevor@trevorsears.com> (https://trevorsears.com/).
33
* 8:33 AM -- September 14th, 2021
44
* Project: @jsdsl/semaphore
5+
*
6+
* @jsdsl/semaphore - A Promise-based semaphore implementation.
7+
* Copyright (C) 2021 Trevor Sears
8+
*
9+
* This program is free software: you can redistribute it and/or modify
10+
* it under the terms of the GNU General Public License as published by
11+
* the Free Software Foundation, either version 3 of the License, or
12+
* (at your option) any later version.
13+
*
14+
* This program is distributed in the hope that it will be useful,
15+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
16+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17+
* GNU General Public License for more details.
18+
*
19+
* You should have received a copy of the GNU General Public License
20+
* along with this program. If not, see <https://www.gnu.org/licenses/>.
521
*/
622

723
import { Semaphore } from "../semaphore";

0 commit comments

Comments
 (0)