Skip to content

Commit c4ceed6

Browse files
committed
Update NEWS, README, and version numbers for the coming 0.17.3 release
1 parent 14ca02f commit c4ceed6

File tree

6 files changed

+24
-8
lines changed

6 files changed

+24
-8
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ set(PYTHONOCC_VERSION_MAJOR 0)
2222
set(PYTHONOCC_VERSION_MINOR 17)
2323
set(PYTHONOCC_VERSION_PATCH 3)
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

NEWS

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
=============================
2+
Version 0.17.3 - March 2017
3+
4+
This release requires oce-0.17.0, oce-0.17.1, oce-0.17.2 or
5+
oce-0.17.3. Prefer the latter.
6+
7+
* wrapper : new GEAOMAlgo_Splitter, and related example, from Salome 8.2
8+
9+
* examples : core_geometry_line_properties,
10+
11+
* webgl : toggle visibility feature for 3js renderer, teselator clean up,
12+
increased default deviation (i.e. decreased default quality), set precision to 4 digits,
13+
speed up generation for json and xml exporters
14+
15+
* ci/cd : many conda and appveyor fixes/improvements
16+
117
=============================
218
Version 0.17.2 - January 2017
319

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pythonocc is a python library whose purpose is to provide 3D modeling
1414
features. It is intended to developers who aim at developing
1515
CAD/PDM/PLM applications.
1616

17-
Latest release : [pythonocc-core 0.17.2 (january 2017)](https://github.com/tpaviot/pythonocc-core/releases/tag/0.17.2)
17+
Latest release : [pythonocc-core 0.17.3 (march 2017)](https://github.com/tpaviot/pythonocc-core/releases/tag/0.17.3)
1818

1919
How to quicky download/install binaries ?
2020
-----------------------------------------
@@ -24,12 +24,12 @@ This will get you up and running in minutes whether you run win32/win64/linux64/
2424

2525
```bash
2626
# install pythonocc in an environment named `pythonocc` with python 3.5; use python=2 for legacy python 2.7.12
27-
conda create -n pythonocc -c pythonocc -c dlr-sc pythonocc-core==0.17.2 python=3
27+
conda create -n pythonocc -c pythonocc -c oce pythonocc-core==0.17.3 python=3
2828
```
2929

3030
Nightly builds are available from another repository. If you want to test features under development that have not been released yet:
3131
```bash
32-
conda install -c tpaviot -c dlr-sc pythonocc-core==nightly
32+
conda install -c tpaviot -c oce pythonocc-core==nightly
3333
```
3434

3535
How to compile ?

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: pythonocc-core-0.17.3-dev.{build}
1+
version: pythonocc-core-0.17.3.{build}
22

33
environment:
44
global:

ci/conda/meta.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# change the version numer to "0.17.1" or "0.18" in cas of a release build
1+
# change the version numer to "0.17.1" or "0.18" in case of a release build
22
package:
33
name: pythonocc-core
4-
version: "nightly"
4+
version: 0.17.3
55

66
source:
77
path: ../..

cmake/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION = "0.17.3-dev"
1+
VERSION = "0.17.3"

0 commit comments

Comments
 (0)