Skip to content

Commit 35bf383

Browse files
committed
add version
1 parent dc41711 commit 35bf383

File tree

4 files changed

+18
-1
lines changed

4 files changed

+18
-1
lines changed

.bumpversion.cfg

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[bumpversion]
2+
current_version = 0.0.0
3+
commit = True
4+
tag = True
5+
6+
[bumpversion:file:version.go]
7+
8+
[bumpversion:file:VERSION]
9+

.travis.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
language: go
2+
dist: xenial
3+
sudo: required
4+
services:
5+
- docker
6+
script:
7+
- echo "to be added..."

VERSION

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.0.0

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package pytorch
22

33
var (
4-
Version = "0.0.1"
4+
Version = "0.0.0"
55
BuildDate = "undefined"
66
GitCommit = "undefined"
77
)

0 commit comments

Comments
 (0)