Skip to content

Commit a593fc3

Browse files
committed
Set version number to 0.18.2
1 parent 611906b commit a593fc3

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ set(PYTHONOCC_VERSION_MAJOR 0)
2222
set(PYTHONOCC_VERSION_MINOR 18)
2323
set(PYTHONOCC_VERSION_PATCH 2)
2424
# Empty for official releases, set to -dev, -rc1, etc for development releases
25-
set(PYTHONOCC_VERSION_DEVEL -dev)
25+
set(PYTHONOCC_VERSION_DEVEL)
2626

2727
cmake_minimum_required(VERSION 2.6)
2828

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: pythonocc-core-0.18.2-dev.{build}
1+
version: pythonocc-core-0.18.2.{build}
22

33
environment:
44
binstar_token:

cmake/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
PYTHONOCC_VERSION_MINOR = 18
55
PYTHONOCC_VERSION_PATCH = 2
66
# Empty for official releases, set to -dev, -rc1, etc for development releases
7-
PYTHONOCC_VERSION_DEVEL = '-dev'
7+
PYTHONOCC_VERSION_DEVEL = ''
88

99
VERSION = "%s.%s.%s%s" % (PYTHONOCC_VERSION_MAJOR, PYTHONOCC_VERSION_MINOR,
1010
PYTHONOCC_VERSION_PATCH, PYTHONOCC_VERSION_DEVEL)
@@ -64,4 +64,3 @@ def test_require_pythonocc_version():
6464

6565
if __name__ == "__main__":
6666
test_require_pythonocc_version()
67-

0 commit comments

Comments
 (0)