Skip to content

Commit 6c7b88b

Browse files
committed
v4.1.0
1 parent d4a77c2 commit 6c7b88b

File tree

14 files changed

+27
-23
lines changed

14 files changed

+27
-23
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
check_branch:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-22.04
1111
outputs:
1212
should_build: ${{ steps.permitted.outputs.result }}
1313

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
test:
12-
runs-on: ubuntu-latest
12+
runs-on: ubuntu-22.04
1313

1414
steps:
1515
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

.github/workflows/website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
check_branch:
10-
runs-on: ubuntu-latest
10+
runs-on: ubuntu-22.04
1111
outputs:
1212
should_deploy: ${{ endsWith(github.ref, steps.get_version.outputs.latest) }}
1313

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# CHANGELOG
22

3+
## v4.1.0
4+
5+
- New build toolchain with pure TypeScript
6+
37
## v4.1.0-alpha.2
48

59
- fix(test-utils) global function return type (#13)

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"lerna": "2.9.1",
3-
"version": "4.1.0-alpha.2",
3+
"version": "4.1.0",
44
"packages": [
55
"modules/*"
66
],

modules/bench/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "JavaScript benchmarking utility",
44
"license": "MIT",
55
"type": "module",
6-
"version": "4.1.0-alpha.2",
6+
"version": "4.1.0",
77
"keywords": [
88
"bench",
99
"benchmark",
@@ -28,7 +28,7 @@
2828
"src"
2929
],
3030
"dependencies": {
31-
"@probe.gl/log": "4.1.0-alpha.2"
31+
"@probe.gl/log": "4.1.0"
3232
},
3333
"gitHead": "95541d68783bfd50cbaf9b2a15b3cb41f1ff8284"
3434
}

modules/env/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "JavaScript environment detection for browser and Node",
44
"license": "MIT",
55
"type": "module",
6-
"version": "4.1.0-alpha.2",
6+
"version": "4.1.0",
77
"keywords": [
88
"javascript",
99
"profiling",

modules/log/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "JavaScript debug logging for browser and Node",
44
"license": "MIT",
55
"type": "module",
6-
"version": "4.1.0-alpha.2",
6+
"version": "4.1.0",
77
"keywords": [
88
"javascript",
99
"profiling",
@@ -33,7 +33,7 @@
3333
],
3434
"browser": {},
3535
"dependencies": {
36-
"@probe.gl/env": "4.1.0-alpha.2"
36+
"@probe.gl/env": "4.1.0"
3737
},
3838
"gitHead": "95541d68783bfd50cbaf9b2a15b3cb41f1ff8284"
3939
}

modules/react-bench/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "A React component to run and visualize `@probe.gl/bench` benchmarks.",
44
"license": "MIT",
55
"type": "module",
6-
"version": "4.1.0-alpha.2",
6+
"version": "4.1.0",
77
"keywords": [
88
"javascript",
99
"bench",

modules/seer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "seer",
3-
"version": "4.1.0-alpha.2",
3+
"version": "4.1.0",
44
"description": "A customizable devtool solution",
55
"license": "MIT",
66
"type": "module",

0 commit comments

Comments
 (0)