Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/release-please/manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.6.2"
".": "0.6.3"
}
6 changes: 3 additions & 3 deletions .serena/project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@
# The first language is the default language and the respective language server will be used as a fallback.
# Note that when using the JetBrains backend, language servers are not used and this list is correspondingly ignored.
languages:
- typescript
- typescript

# the encoding used by text files in the project
# For a list of possible encodings, see https://docs.python.org/3.11/library/codecs.html#standard-encodings
# the encoding used by text files in the project
# For a list of possible encodings, see https://docs.python.org/3.11/library/codecs.html#standard-encodings
encoding: 'utf-8'

# whether to use the project's gitignore file to ignore files
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.6.3](https://github.com/poolifier/poolifier-web-worker/compare/v0.6.2...v0.6.3) (2026-02-25)

### 🐞 Bug Fixes

- **deps:** update dependency poolifier-web-worker to ^0.6.2
([#131](https://github.com/poolifier/poolifier-web-worker/issues/131))
([55906fc](https://github.com/poolifier/poolifier-web-worker/commit/55906fc9c1dc39ef151407a4598f9e4ecc6b5302))

## [0.6.2](https://github.com/poolifier/poolifier-web-worker/compare/v0.6.1...v0.6.2) (2026-02-23)

### 🐞 Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ for more details**:
<!-- deno-fmt-ignore -->

```js
<script type="module">import { ThreadWorker } from 'https://cdn.jsdelivr.net/npm/poolifier-web-worker@0.6.2/browser/mod.js'</script>
<script type="module">import { ThreadWorker } from 'https://cdn.jsdelivr.net/npm/poolifier-web-worker@0.6.3/browser/mod.js'</script>
```

```js
Expand All @@ -160,7 +160,7 @@ import {
DynamicThreadPool,
FixedThreadPool,
PoolEvents,
} from 'https://cdn.jsdelivr.net/npm/poolifier-web-worker@0.6.2/browser/mod.js'
} from 'https://cdn.jsdelivr.net/npm/poolifier-web-worker@0.6.3/browser/mod.js'
</script>
```

Expand Down
2 changes: 1 addition & 1 deletion deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@poolifier/poolifier-web-worker",
"version": "0.6.2",
"version": "0.6.3",
"exports": "./src/mod.ts",
"compilerOptions": {
"lib": [
Expand Down
2 changes: 1 addition & 1 deletion dist/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "poolifier-web-worker",
"version": "0.6.2",
"version": "0.6.3",
"description": "poolifier-web-worker",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion examples/deno/javascript/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"imports": {
"@poolifier/poolifier-web-worker": "jsr:@poolifier/poolifier-web-worker@^0.6.2"
"@poolifier/poolifier-web-worker": "jsr:@poolifier/poolifier-web-worker@^0.6.3"
},
"tasks": {
"start:dynamic": "deno run -A ./dynamicExample.js",
Expand Down
2 changes: 1 addition & 1 deletion examples/deno/typescript/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"imports": {
"@poolifier/poolifier-web-worker": "jsr:@poolifier/poolifier-web-worker@^0.6.2"
"@poolifier/poolifier-web-worker": "jsr:@poolifier/poolifier-web-worker@^0.6.3"
},
"tasks": {
"start": "deno run -A ./pool.ts"
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ sonar.organization=poolifier
sonar.typescript.lcov.reportPaths=coverage/lcov.info
sonar.projectName=poolifier-web-worker
# x-release-please-start-version
sonar.projectVersion=0.6.2
sonar.projectVersion=0.6.3
# x-release-please-end
sonar.host.url=https://sonarcloud.io
sonar.sources=src
Expand Down
2 changes: 1 addition & 1 deletion src/pools/version.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// x-release-please-start-version
export const version = '0.6.2'
export const version = '0.6.3'
// x-release-please-end