Skip to content

Commit 43a6ee7

Browse files
authored
Merge pull request #63 from levyfan/master
upgrade to v0.0.5
2 parents d56a264 + 8c17f76 commit 43a6ee7

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

.gitignore

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
build/
2+
dist/
3+
target/
4+
__pycache__/
5+
*.py[cod]
6+
*$py.class
7+
*.egg-info/
8+
9+
*.so
10+
*.dylib
11+
12+
.vscode/
13+
.idea/
14+
.settings/

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
cmake_minimum_required(VERSION 3.6)
2-
project(cuBERT VERSION 0.0.4 LANGUAGES C CXX)
2+
project(cuBERT VERSION 0.0.5 LANGUAGES C CXX)
33

44
set(CMAKE_CXX_STANDARD 11)
55
set(CMAKE_POSITION_INDEPENDENT_CODE ON)

java/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>com.zhihu.cubert</groupId>
88
<artifactId>cuBERT</artifactId>
9-
<version>0.0.4-SNAPSHOT</version>
9+
<version>0.0.5-SNAPSHOT</version>
1010

1111
<dependencies>
1212
<dependency>

python/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
setup(
2222
name='cuBERT',
23-
version='0.0.4',
23+
version='0.0.5',
2424
author='qinluo',
2525
author_email='[email protected]',
2626
description='python interface for cuBERT',

0 commit comments

Comments
 (0)