Skip to content

Commit

Permalink
Update version to 0.14
Browse files Browse the repository at this point in the history
Also add the version to js/meshopt_decoder.js since it's often
distributed separately from the rest of the library.
  • Loading branch information
zeux committed Apr 17, 2020
1 parent 716d7f7 commit a1d0b2b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if (NOT CMAKE_VERSION VERSION_LESS 3.15)
cmake_policy(SET CMP0092 NEW) # Enables clean /W4 override for MSVC
endif()

project(meshoptimizer VERSION 0.13 LANGUAGES CXX)
project(meshoptimizer VERSION 0.14 LANGUAGES CXX)

option(MESHOPT_BUILD_DEMO "Build demo" OFF)
option(MESHOPT_BUILD_TOOLS "Build tools" OFF)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ The library provides a C and C++ interface for all algorithms; you can use it fr
meshoptimizer is hosted on GitHub; you can download the latest release using git:

```
git clone -b v0.13 https://github.com/zeux/meshoptimizer.git
git clone -b v0.14 https://github.com/zeux/meshoptimizer.git
```

Alternatively you can [download the .zip archive from GitHub](https://github.com/zeux/meshoptimizer/archive/v0.13.zip).
Alternatively you can [download the .zip archive from GitHub](https://github.com/zeux/meshoptimizer/archive/v0.14.zip).

## Building

Expand Down
2 changes: 1 addition & 1 deletion gltf/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gltfpack",
"version": "0.13.3",
"version": "0.14.0",
"description": "A command-line tool that can optimize glTF files for size and speed",
"author": "Arseny Kapoulkine",
"license": "MIT",
Expand Down
1 change: 1 addition & 0 deletions js/meshopt_decoder.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions src/meshoptimizer.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* meshoptimizer - version 0.13
* meshoptimizer - version 0.14
*
* Copyright (C) 2016-2020, by Arseny Kapoulkine ([email protected])
* Report bugs and download new versions at https://github.com/zeux/meshoptimizer
Expand All @@ -12,7 +12,7 @@
#include <stddef.h>

/* Version macro; major * 1000 + minor * 10 + patch */
#define MESHOPTIMIZER_VERSION 130
#define MESHOPTIMIZER_VERSION 140

/* If no API is defined, assume default */
#ifndef MESHOPTIMIZER_API
Expand Down

0 comments on commit a1d0b2b

Please sign in to comment.