Skip to content

Commit

Permalink
Release v0.20.1 (#566)
Browse files Browse the repository at this point in the history
  • Loading branch information
MadisonEhlers-Vertex authored Feb 8, 2024
1 parent 1a57677 commit cb2398a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.20.0",
"version": "0.20.1",
"npmClient": "yarn",
"useWorkspaces": true,
"command": {
Expand Down
4 changes: 2 additions & 2 deletions packages/viewer-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vertexvis/viewer-react",
"version": "0.20.0",
"version": "0.20.1",
"description": "React bindings for the Vertex Viewer SDK.",
"license": "MIT",
"author": "Vertex Developers <support@vertexvis.com> (https://developer.vertexvis.com)",
Expand Down Expand Up @@ -33,7 +33,7 @@
"test:coverage": "echo 'No unit tests defined'"
},
"dependencies": {
"@vertexvis/viewer": "0.20.0"
"@vertexvis/viewer": "0.20.1"
},
"devDependencies": {
"@types/react": "^18.2.48",
Expand Down
4 changes: 2 additions & 2 deletions packages/viewer-vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vertexvis/viewer-vue",
"version": "0.20.0",
"version": "0.20.1",
"description": "Vue bindings for the Vertex Viewer SDK.",
"license": "MIT",
"author": "Vertex Developers <support@vertexvis.com> (https://developer.vertexvis.com)",
Expand Down Expand Up @@ -33,7 +33,7 @@
"test:coverage": "echo 'No unit tests defined'"
},
"dependencies": {
"@vertexvis/viewer": "0.20.0"
"@vertexvis/viewer": "0.20.1"
},
"devDependencies": {
"@vertexvis/eslint-config-vertexvis-typescript": "^0.5.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/viewer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@vertexvis/viewer",
"version": "0.20.0",
"version": "0.20.1",
"description": "The Vertex SDK for viewing models.",
"license": "MIT",
"author": "Vertex Developers <support@vertexvis.com> (https://developer.vertexvis.com)",
Expand Down
8 changes: 4 additions & 4 deletions packages/viewer/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ file that references our published JS bundles from a CDN.
<head>
<link
rel="stylesheet"
href="https://unpkg.com/@vertexvis/viewer@0.20.0/dist/viewer/viewer.css"
href="https://unpkg.com/@vertexvis/viewer@0.20.1/dist/viewer/viewer.css"
/>
<script
type="module"
src="https://unpkg.com/@vertexvis/viewer@0.20.0/dist/viewer/viewer.esm.js"
src="https://unpkg.com/@vertexvis/viewer@0.20.1/dist/viewer/viewer.esm.js"
></script>
</head>

Expand All @@ -53,7 +53,7 @@ These utilities can be imported from a CDN as shown below:
</head>
<body>
<script type="module">
import { ColorMaterial } from 'https://unpkg.com/@vertexvis/viewer@0.20.0/dist/esm/index.mjs';
import { ColorMaterial } from 'https://unpkg.com/@vertexvis/viewer@0.20.1/dist/esm/index.mjs';
function main() {
const color = ColorMaterial.fromHex('#ff0000');
Expand Down Expand Up @@ -90,7 +90,7 @@ dependency to your `package.json`:
```json
{
"dependencies": {
"@vertexvis/viewer": "^0.20.0"
"@vertexvis/viewer": "^0.20.1"
}
}
```
Expand Down

0 comments on commit cb2398a

Please sign in to comment.