Skip to content

Commit 93af2f3

Browse files
authored
Merge pull request #365 from tpaviot/review/0.17.1-release
Review/0.17.1 release
2 parents ee10dd6 + 951608d commit 93af2f3

File tree

7 files changed

+39
-7
lines changed

7 files changed

+39
-7
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 1)
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

INSTALL.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,13 @@ can compile/use it :
2424

2525
- OpenCascade Community Edition 0.17.x (https://github.com/tpaviot/oce),
2626

27+
- FreeType 2.6.3 (https://www.freetype.org/),
28+
2729
- SWIG 3.0.9 or higher (http://www.swig.org),
2830

2931
- CMake 2.8 or higher (http://www.cmake.org).
3032

31-
**Important**: the OCE version has to match the pythonocc-core version, which is currently **0.16**
33+
**Important**: the OCE version has to match the pythonocc-core version, which is currently **0.17.x**
3234

3335
Create a local copy of the repository
3436
-------------------------------------

NEWS

+30
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
=============================
2+
Version 0.17.1 - December 2016
3+
4+
This release requires oce-0.17.0 or oce-0.17.1 or oce-0.17.2. Prefer the latter.
5+
6+
* gui: fix of the resizing issue of the qtViewer widget
7+
8+
* wrapper: Add class local properties #356
9+
10+
* wrapper: Fixed string representation #353
11+
12+
* wrapper: Fix incorrect array size #355
13+
14+
* wrapper: BRep 3d font support and related example
15+
16+
* webgl: major refactoring of threejs and webgl renderers
17+
(webserver, contour edge rendering, multishape, mesh quality, colr and transparency)
18+
19+
* wrapper: proper __repr__ function for pythonocc objects
20+
21+
* gui: PyQt signals and related example
22+
23+
* gui: cursor pan, zoom, rotate in the Qt viewer #335
24+
25+
* wrapper: fixes for BOPCol and BOPAlgo packages
26+
27+
* examples: ported algotopia examples, bisector, geomplate
28+
29+
* minor fixes
30+
131
=============================
232
Version 0.17 - Septembre 2016
333

README.md

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

16-
Latest release : [pythonocc-core 0.17 (september 2016)](https://github.com/tpaviot/pythonocc-core/releases/tag/0.17)
16+
Latest release : [pythonocc-core 0.17.1 (december 2016)](https://github.com/tpaviot/pythonocc-core/releases/tag/0.17.1)
1717

1818
How to quicky download/install binaries ?
1919
-----------------------------------------
@@ -57,7 +57,7 @@ The basis of pythonocc is python wrapper for the [oce C++ library / CAD kernel]
5757
(https://github.com/tpaviot/oce), aka pythonocc-core.
5858
pythonocc-core version number correspond to oce library releases its wrapping.
5959

60-
For example; the current pythonocc-core release, 0.17, requires any of the [OCE
60+
For example; the current pythonocc-core release, 0.17.1, requires any of the [OCE
6161
0.17.x](https://github.com/tpaviot/oce/releases) releases. Here, the __Major__
6262
version name of either OCE or pythonocc-core release is __0__, the __Minor__
6363
version is __17__ and the __Patch__ version is (optionally) __x__. pythonocc-core can be built with any OCE version that has a corresponding __Major__ and __Minor__ version

appveyor.yml

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

33
environment:
44
global:

ci/conda/meta.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
package:
22
name: pythonocc-core
3-
version: "0.17.1dev"
3+
version: "0.17.1"
44

55
source:
66
path: ../..

cmake/__init__.py

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

0 commit comments

Comments
 (0)