aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSyoyo Fujita <syoyo@lighttransport.com>2021-08-27 19:45:16 +0900
committerSyoyo Fujita <syoyo@lighttransport.com>2021-08-27 19:45:16 +0900
commit95fe4ef41de28ce6b0aef00bfdd7b788641a15a6 (patch)
tree52c7775cf70a3369043d580618098bb4e518a276
parent1e794e9c641ffbf46d7e6e3b445e4b1c2bda10bb (diff)
downloadtinyobjloader-95fe4ef41de28ce6b0aef00bfdd7b788641a15a6.tar.gz
v2.0.0-rc9
-rw-r--r--CMakeLists.txt2
-rw-r--r--README.md2
-rw-r--r--python/setup.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8f1eb79..f64b42c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -4,7 +4,7 @@
project(tinyobjloader)
cmake_minimum_required(VERSION 3.2)
set(TINYOBJLOADER_SOVERSION 2)
-set(TINYOBJLOADER_VERSION 2.0.0-rc.8)
+set(TINYOBJLOADER_VERSION 2.0.0-rc.9)
#optional double precision support
option(TINYOBJLOADER_USE_DOUBLE "Build library with double precision instead of single (float)" OFF)
diff --git a/README.md b/README.md
index 91e9a92..038e36c 100644
--- a/README.md
+++ b/README.md
@@ -421,7 +421,7 @@ cibuildwheels + twine upload for each git tagging event is handled in Azure Pipe
* Bump version in CMakeLists.txt
* Update version in `python/setup.py`
-* Commit with tag name starging with `v`(e.g. `v2.1.0`)
+* Commit with tag name starting with `v`(e.g. `v2.1.0`)
* `git push --tags`
* cibuildwheels + pypi upload(through twine) will be automatically triggered in Azure Pipeline.
diff --git a/python/setup.py b/python/setup.py
index df53136..6c63fdf 100644
--- a/python/setup.py
+++ b/python/setup.py
@@ -102,7 +102,7 @@ m = setuptools.Extension(
setuptools.setup(
name="tinyobjloader",
- version="2.0.0rc8",
+ version="2.0.0rc9",
description="Tiny but powerful Wavefront OBJ loader",
long_description=long_description,
long_description_content_type="text/markdown",