Skip to content

2.2.3 #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Dec 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
working-directory: ./

- name: Create test coverage artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: coverage
path: ./coverage
Expand All @@ -66,7 +66,7 @@ jobs:
uses: actions/checkout@master

- name: Download coverage artifact
uses: actions/download-artifact@v1
uses: actions/download-artifact@v4
with:
name: coverage

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
working-directory: ./

- name: Create test coverage artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: coverage
path: ./coverage
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
## Change log

## 2.2.3 - 2024-12-29

> 'guess time for the annual tiny maintenance. 😅 Thanks for 40k+ downloads! ❤️❤️

### Added

* Bump development dependencies

### Fixed

* GitHub CI deprecated action version

## 2.2.2 - 2023-12-30

### Added
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<h1 align="center">n-digit-token</h1>

<p align="center">Generate a cryptographically secure pseudo-random token of N digits.</p>
<p align="center">Generate a cryptographically secure pseudo-random token of N digits</p>

<p align="center">
<a href="#comparisons">
Expand All @@ -25,7 +25,7 @@

## Quick start

`gen(n)` where `n` is the desired length/number of digits.
`gen(n)` where `n` is the desired length/number of digits

``` typescript
import { gen } from 'n-digit-token';
Expand Down Expand Up @@ -401,7 +401,7 @@ If you like this project, please consider supporting `n-digit-token` with a [one

### Star this project

If you can't support `n-digit-token` financially, but you've found it useful, please consider giving the project a [GitHub:star:](https://github.com/almasen/n-digit-token) to help its discoverability. Thank you!
If you've found this tool useful, please consider giving the project a [GitHub:star:](https://github.com/almasen/n-digit-token) to help its discoverability. Thank you!

### Contributing

Expand Down
72 changes: 36 additions & 36 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "n-digit-token",
"version": "2.2.2",
"version": "2.2.3",
"description": "Cryptographically secure pseudo-random token of n digits",
"keywords": [
"token",
Expand Down
Loading