Skip to content

Commit

Permalink
Chore: changelog and how to release for v2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
autra committed May 16, 2022
1 parent 0f9f07f commit 18124a7
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 0 deletions.
41 changes: 41 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Changelog

All notable changes to this project will be documented in this file.

## v2.0.0

This releases completely reworks py3dtiles command line and add new features.

The command line now uses subcommands syntax, in order to expose a single
entry point and support multiple commands. The existing commands 'export_tileset' and 'py3dtiles_info' became
'py3dtiles export' and 'py3dtiles info'.

### Changes

- relicensed as Apache 2.0.
- minimal python supported is now 3.7
- dependencies versions has been updated:
- laspy should be at least 2.0
- numpy at least 1.20.0
- Tile has been renamed to TileContent

### Features

New features were added, the main one being: py3dtiles can be used to convert
pointcloud las files to a 3dtiles tileset.

This is the purpose of the 'py3dtiles convert' command. It supports multicore
processor for faster processing, leveraging pyzmq, and the memory management has been carefully
implemented to support virtually unlimited points count.

Other features:

- read points from xyz files
- Documentation are now published at https://oslandia.gitlab.io/py3dtiles

### Fixes

* 53580ba Jeremy Gaillard fix: use y-up orientation for glTF objects in export script
* 65d6f67 Jeremy Gaillard fix: proper bounding box size in export script
* 3603b00 Augustin Trancart fix: reliably select triangulation projection plane and orientation
* fd2105a jailln Fix gltf min and max value
7 changes: 7 additions & 0 deletions HOW_TO_RELEASE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# How to release

- edit the CHANGELOG.md
- edit the version in `py3dtiles/__init__.py`
- publish on pypi

Check if the doc for the new version is published.

0 comments on commit 18124a7

Please sign in to comment.