Skip to content

Commit eef834b

Browse files
committed
v1.4.0-alpha.0
1 parent 80ebf5b commit eef834b

File tree

5 files changed

+23
-15
lines changed

5 files changed

+23
-15
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,14 @@ Ref: http://keepachangelog.com/en/0.3.0/
2121

2222
### hubble.gl v1.4 Prereleases
2323

24+
#### hubble.gl [1.4.0-alpha.0] - May 22 2024
25+
26+
- chore(core) publish NPM packages from CI (#274)
27+
- chore(react) upgrade to react 18
28+
- chore(examples) using vite in website examples (#271)
29+
- add(examples) scripting example (#270)
30+
- chore: typescript (#269)
31+
2432
## hubble.gl v1.3
2533

2634
### hubble.gl v1.3 Prereleases

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.3.8",
2+
"version": "1.4.0-alpha.0",
33
"npmClient": "yarn",
44
"packages": [
55
"modules/*"

modules/core/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hubble.gl/core",
3-
"version": "1.3.8",
3+
"version": "1.4.0-alpha.0",
44
"description": "hubble.gl core library classes",
55
"license": "MIT",
66
"type": "module",
@@ -49,14 +49,14 @@
4949
"@loaders.gl/video": "3.0.12"
5050
},
5151
"peerDependencies": {
52+
"@deck.gl/core": ">=8.3",
5253
"@luma.gl/core": ">=8.3",
53-
"@luma.gl/engine": ">=8.3",
54-
"@deck.gl/core": ">=8.3"
54+
"@luma.gl/engine": ">=8.3"
5555
},
5656
"devDependencies": {
57+
"@deck.gl/core": "^8.9",
5758
"@luma.gl/core": "^8.5.0",
5859
"@luma.gl/engine": "^8.5.0",
59-
"@deck.gl/core": "^8.9",
6060
"@types/tape-catch": "^1.0.2"
6161
}
6262
}

modules/main/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hubble.gl",
3-
"version": "1.3.8",
3+
"version": "1.4.0-alpha.0",
44
"description": "hubble.gl is an animation and video capture library for vis.gl in the browser",
55
"license": "MIT",
66
"type": "module",
@@ -36,8 +36,8 @@
3636
"prepublishOnly": "npm run build-bundle && npm run build-bundle -- --env.dev"
3737
},
3838
"dependencies": {
39-
"@hubble.gl/core": "1.3.8",
40-
"@hubble.gl/react": "1.3.8"
39+
"@hubble.gl/core": "1.4.0-alpha.0",
40+
"@hubble.gl/react": "1.4.0-alpha.0"
4141
},
4242
"peerDependencies": {
4343
"react": ">=16.3.0",

modules/react/package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hubble.gl/react",
3-
"version": "1.3.8",
3+
"version": "1.4.0-alpha.0",
44
"description": "React components for hubble.gl",
55
"license": "MIT",
66
"type": "module",
@@ -54,24 +54,24 @@
5454
"styled-components": "^6.1.11"
5555
},
5656
"peerDependencies": {
57-
"@hubble.gl/core": "^1.3.0",
58-
"@loaders.gl/core": "^3.0.0",
5957
"@deck.gl/core": ">=8.3",
60-
"@deck.gl/react": ">=8.3",
6158
"@deck.gl/mapbox": ">=8.3",
59+
"@deck.gl/react": ">=8.3",
60+
"@hubble.gl/core": "^1.3.0",
61+
"@loaders.gl/core": "^3.0.0",
6262
"mapbox-gl": "<=2.4.1",
6363
"react": ">=16.3.0",
6464
"react-dom": ">=16.3.0"
6565
},
6666
"devDependencies": {
67+
"@deck.gl/core": "^8.9",
68+
"@deck.gl/mapbox": "^8.9",
69+
"@deck.gl/react": "^8.9",
6770
"@types/lodash.get": "^4.4.9",
6871
"@types/lodash.isequal": "^4.5.8",
6972
"@types/react": "^18.3.0",
7073
"@types/react-dom": "^18.3.0",
7174
"@types/tape-catch": "^1.0.2",
72-
"@deck.gl/core": "^8.9",
73-
"@deck.gl/react": "^8.9",
74-
"@deck.gl/mapbox": "^8.9",
7575
"react": "^18.3.0",
7676
"react-dom": "^18.3.0"
7777
}

0 commit comments

Comments
 (0)