Skip to content

Commit 86296e7

Browse files
committed
DENO publication added.
1 parent b9e4b20 commit 86296e7

File tree

5 files changed

+27
-2
lines changed

5 files changed

+27
-2
lines changed

.github/workflows/publish-deno.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Publish to DENO
2+
on:
3+
release:
4+
types: [created]
5+
jobs:
6+
publish:
7+
runs-on: ubuntu-latest
8+
permissions:
9+
contents: read
10+
id-token: write
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Publish package
14+
run: npx jsr publish
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ on:
33
release:
44
types: [created]
55
jobs:
6-
build:
6+
publish:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Checkout

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# IterTools Typescript Change Log
22

3+
## v2.3.1 - 2025-09-06
4+
5+
### Improvements
6+
* Package was publicated on DENO
7+
38
## v2.3.0 - 2025-09-06
49

510
### New features

deno.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"name": "@smoren/itertools-ts",
3+
"version": "2.3.1",
4+
"license": "MIT",
5+
"exports": "./src/index.ts"
6+
}

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "itertools-ts",
3-
"version": "2.3.0",
3+
"version": "2.3.1",
44
"description": "Extended itertools port for TypeScript and JavaScript. Provides a huge set of functions for working with iterable collections (including async ones)",
55
"license": "MIT",
66
"repository": {

0 commit comments

Comments
 (0)