Skip to content

Commit 2fa7735

Browse files
authored
[release] v0.6.1
1 parent ecca629 commit 2fa7735

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ project(taichi)
88

99
SET(TI_VERSION_MAJOR 0)
1010
SET(TI_VERSION_MINOR 6)
11-
SET(TI_VERSION_PATCH 0)
11+
SET(TI_VERSION_PATCH 1)
1212

1313
execute_process(
1414
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Advanced features of Taichi include [spatially sparse computing](https://taichi.
2323
## Installation [![Downloads](https://pepy.tech/badge/taichi-nightly)](https://pepy.tech/project/taichi-nightly)
2424

2525
```bash
26-
python3 -m pip install taichi # Latest version: 0.6.0
26+
python3 -m pip install taichi # Latest version: 0.6.1
2727
```
2828

2929
**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)`.

docs/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.6.0
1+
0.6.1

misc/make_changelog.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@ def format(c):
3737
'autodiff': 'Automatic differentiation',
3838
'gui': 'GUI',
3939
'llvm': 'LLVM backend (CPU and CUDA)',
40+
'refactor': 'Refactor',
4041
'bug': 'Bug fixes',
42+
'test': 'Tests',
43+
'async': 'AsyncEngine',
4144
}
4245

4346
for i, c in enumerate(commits):
@@ -56,6 +59,7 @@ def format(c):
5659
s = s[r + 1:]
5760
s = s.strip()
5861
for tag in tags:
62+
assert tag.lower() in details, f'Tag {tag} undefined in details'
5963
if tag[0].isupper():
6064
tag = tag.lower()
6165
if tag not in notable_changes:

0 commit comments

Comments
 (0)