Skip to content

Commit

Permalink
[release] v0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
yuanming-hu authored May 4, 2020
1 parent ecca629 commit 2fa7735
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ project(taichi)

SET(TI_VERSION_MAJOR 0)
SET(TI_VERSION_MINOR 6)
SET(TI_VERSION_PATCH 0)
SET(TI_VERSION_PATCH 1)

execute_process(
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Advanced features of Taichi include [spatially sparse computing](https://taichi.
## Installation [![Downloads](https://pepy.tech/badge/taichi-nightly)](https://pepy.tech/project/taichi-nightly)

```bash
python3 -m pip install taichi # Latest version: 0.6.0
python3 -m pip install taichi # Latest version: 0.6.1
```

**News: (Apr 29, 2020) The OpenGL Compute Shader backend by [彭于斌 (archibate)](https://github.com/archibate)** is officially released in [**v0.6.0**](https://github.com/taichi-dev/taichi/releases/tag/v0.6.0)! Please try it out with `ti.init(arch=ti.opengl)`.
Expand Down
2 changes: 1 addition & 1 deletion docs/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.0
0.6.1
4 changes: 4 additions & 0 deletions misc/make_changelog.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,10 @@ def format(c):
'autodiff': 'Automatic differentiation',
'gui': 'GUI',
'llvm': 'LLVM backend (CPU and CUDA)',
'refactor': 'Refactor',
'bug': 'Bug fixes',
'test': 'Tests',
'async': 'AsyncEngine',
}

for i, c in enumerate(commits):
Expand All @@ -56,6 +59,7 @@ def format(c):
s = s[r + 1:]
s = s.strip()
for tag in tags:
assert tag.lower() in details, f'Tag {tag} undefined in details'
if tag[0].isupper():
tag = tag.lower()
if tag not in notable_changes:
Expand Down

0 comments on commit 2fa7735

Please sign in to comment.