Skip to content

Commit

Permalink
Prepare release 0.3.2
Browse files Browse the repository at this point in the history
- Update CHANGES.md
- Update version number in package.json
- Update ThirdParty.json
- Update auto-generated API file
  • Loading branch information
javagl committed Nov 1, 2023
1 parent e4d849c commit f53be49
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
11 changes: 8 additions & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
Change Log
==========

### 0.?.? - 2023-mm-dd

- The `upgrade` command is now removing empty `tile.children` arrays, setting the `children` to be `undefined` instead.
### 0.3.2 - 2023-11-01

- The `upgrade` command is now removing empty `tile.children` arrays, setting the `children` to be `undefined` instead (via [#73](https://github.com/CesiumGS/3d-tiles-tools/pull/73))
- Fixed a bug that prevented the content of external tileset to be processed in certain operations ([#76](https://github.com/CesiumGS/3d-tiles-tools/issues/76))
- Fixed a runtime error that could occur when encoding many textures to KTX ([#77](https://github.com/CesiumGS/3d-tiles-tools/issues/77))
- **Internal**:
- Added `meshoptimizer` and registered the corresponding encoder/decoder in the preconfigured glTF-Transform IO instance that is used internally (via [#74](https://github.com/CesiumGS/3d-tiles-tools/pull/74))
- Exposed all classes (except for the `pipeline` classes) for **internal** use (via [#75](https://github.com/CesiumGS/3d-tiles-tools/pull/75))

### 0.3.1 - 2023-10-10
- Integrated a dedicated logging library (via [#61](https://github.com/CesiumGS/3d-tiles-tools/pull/61))
Expand Down
10 changes: 5 additions & 5 deletions ThirdParty.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,23 @@
"license": [
"MIT"
],
"version": "3.7.3",
"version": "3.8.0",
"url": "https://www.npmjs.com/package/@gltf-transform/core"
},
{
"name": "@gltf-transform/extensions",
"license": [
"MIT"
],
"version": "3.7.3",
"version": "3.8.0",
"url": "https://www.npmjs.com/package/@gltf-transform/extensions"
},
{
"name": "@gltf-transform/functions",
"license": [
"MIT"
],
"version": "3.7.3",
"version": "3.8.0",
"url": "https://www.npmjs.com/package/@gltf-transform/functions"
},
{
Expand All @@ -44,7 +44,7 @@
"license": [
"Apache-2.0"
],
"version": "1.110.0",
"version": "1.110.1",
"url": "https://www.npmjs.com/package/cesium"
},
{
Expand Down Expand Up @@ -108,7 +108,7 @@
"license": [
"MIT"
],
"version": "8.16.0",
"version": "8.16.1",
"url": "https://www.npmjs.com/package/pino"
},
{
Expand Down
1 change: 1 addition & 0 deletions etc/3d-tiles-tools.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@ export class BasicTilesetProcessor extends TilesetProcessor {
// @internal
export class BasisEncoder {
static create(): Promise<BasisEncoder>;
delete(): void;
encode(dst_basis_file_js_val: Uint8Array): any;
setCheckForAlpha(check_for_alpha_flag: boolean): any;
setCompressionLevel(comp_level: number): any;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "3d-tiles-tools",
"version": "0.3.1",
"version": "0.3.2",
"license": "Apache-2.0",
"description": "3D Tiles tools",
"author": {
Expand Down

0 comments on commit f53be49

Please sign in to comment.