Skip to content

Commit

Permalink
v0.21.1
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Deubler <[email protected]>
  • Loading branch information
TerminalTim committed Mar 11, 2021
1 parent 8e7a2ca commit 0ad6cf3
Show file tree
Hide file tree
Showing 14 changed files with 49 additions and 19 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.21.1 (2021-3-11)
###display
* fixed: text that uses offsetX/offsetY is incorrectly offset on retina devices
* fixed: text stroke rendering artifacts in Firefox
* fixed: styles that are using colors with StyleZoomRanges are invisible

## 0.21.0 (2021-3-9)
### editor
* added: typescript declarations for the public api interface
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"packages": [
"packages/*"
],
"version": "0.21.0",
"version": "0.21.1",
"npmClient": "yarn",
"useWorkspaces": true
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps",
"version": "0.21.0",
"version": "0.21.1",
"description": "XYZ Editor is an experimental and work in progress open-source map editor written in TypeScript/JavaScript",
"author": {
"name": "HERE Europe B.V.",
Expand Down
6 changes: 6 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.21.1 (2021-3-11)
###display
* fixed: text that uses offsetX/offsetY is incorrectly offset on retina devices
* fixed: text stroke rendering artifacts in Firefox
* fixed: styles that are using colors with StyleZoomRanges are invisible

## 0.21.0 (2021-3-9)
### editor
* added: typescript declarations for the public api interface
Expand Down
2 changes: 1 addition & 1 deletion packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-common",
"version": "0.21.0",
"version": "0.21.1",
"description": "Commonly used libraries of XYZ Maps.",
"author": {
"name": "HERE Europe B.V.",
Expand Down
6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.21.1 (2021-3-11)
###display
* fixed: text that uses offsetX/offsetY is incorrectly offset on retina devices
* fixed: text stroke rendering artifacts in Firefox
* fixed: styles that are using colors with StyleZoomRanges are invisible

## 0.21.0 (2021-3-9)
### editor
* added: typescript declarations for the public api interface
Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-core",
"version": "0.21.0",
"version": "0.21.1",
"description": "Core libs of XYZ Editor.",
"author": {
"name": "HERE Europe B.V.",
Expand All @@ -26,7 +26,7 @@
},
"publishConfig": {},
"dependencies": {
"@here/xyz-maps-common": "^0.21.0"
"@here/xyz-maps-common": "^0.21.1"
},
"devDependencies": {
"@mapbox/vector-tile": "^1.3.1",
Expand Down
6 changes: 6 additions & 0 deletions packages/display/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.21.1 (2021-3-11)
###display
* fixed: text that uses offsetX/offsetY is incorrectly offset on retina devices
* fixed: text stroke rendering artifacts in Firefox
* fixed: styles that are using colors with StyleZoomRanges are invisible

## 0.21.0 (2021-3-9)
### editor
* added: typescript declarations for the public api interface
Expand Down
6 changes: 3 additions & 3 deletions packages/display/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-display",
"version": "0.21.0",
"version": "0.21.1",
"description": "Map display of XYZ editor.",
"author": {
"name": "HERE Europe B.V.",
Expand All @@ -27,8 +27,8 @@
},
"publishConfig": {},
"dependencies": {
"@here/xyz-maps-common": "^0.21.0",
"@here/xyz-maps-core": "^0.21.0"
"@here/xyz-maps-common": "^0.21.1",
"@here/xyz-maps-core": "^0.21.1"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^12.0.0",
Expand Down
6 changes: 6 additions & 0 deletions packages/editor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 0.21.1 (2021-3-11)
###display
* fixed: text that uses offsetX/offsetY is incorrectly offset on retina devices
* fixed: text stroke rendering artifacts in Firefox
* fixed: styles that are using colors with StyleZoomRanges are invisible

## 0.21.0 (2021-3-9)
### editor
* added: typescript declarations for the public api interface
Expand Down
8 changes: 4 additions & 4 deletions packages/editor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-editor",
"version": "0.21.0",
"version": "0.21.1",
"description": "XYZ editor.",
"author": {
"name": "HERE Europe B.V.",
Expand All @@ -27,9 +27,9 @@
"build-dts": "npx buildDts -p ."
},
"dependencies": {
"@here/xyz-maps-common": "^0.21.0",
"@here/xyz-maps-core": "^0.21.0",
"@here/xyz-maps-display": "^0.21.0"
"@here/xyz-maps-common": "^0.21.1",
"@here/xyz-maps-core": "^0.21.1",
"@here/xyz-maps-display": "^0.21.1"
},
"devDependencies": {
"@rollup/plugin-typescript": "^2.1.0",
Expand Down
10 changes: 5 additions & 5 deletions packages/playground/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-playground",
"version": "0.21.0",
"version": "0.21.1",
"description": "Playground for XYZ editor.",
"author": {
"name": "HERE Europe B.V.",
Expand All @@ -19,10 +19,10 @@
"dev": "rollup -c -w"
},
"dependencies": {
"@here/xyz-maps-common": "^0.21.0",
"@here/xyz-maps-core": "^0.21.0",
"@here/xyz-maps-display": "^0.21.0",
"@here/xyz-maps-editor": "^0.21.0",
"@here/xyz-maps-common": "^0.21.1",
"@here/xyz-maps-core": "^0.21.1",
"@here/xyz-maps-display": "^0.21.1",
"@here/xyz-maps-editor": "^0.21.1",
"@monaco-editor/react": "^4.0.7",
"monaco-editor": "^0.21.3",
"react": "^17.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/tests/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-test",
"version": "0.21.0",
"version": "0.21.1",
"description": "Tests for XYZ editor.",
"author": {
"name": "HERE Europe B.V.",
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@here/xyz-maps-utils",
"version": "0.21.0",
"version": "0.21.1",
"description": "Development utilities used to build XYZ Maps modules",
"author": {
"name": "HERE Europe B.V.",
Expand Down

0 comments on commit 0ad6cf3

Please sign in to comment.