Skip to content
This repository was archived by the owner on Feb 9, 2021. It is now read-only.

Commit 6be92a8

Browse files
committed
Updated version numbers to 1.2.0
1 parent c67fe5d commit 6be92a8

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ What is a CadQuery?
88
[![Travis Build Status](https://travis-ci.org/dcowden/cadquery.svg?branch=master)](https://travis-ci.org/dcowden/cadquery?branch=master)
99
[![Build status](https://ci.appveyor.com/api/projects/status/c7u4yjl8xxlokrw0/branch/master?svg=true)](https://ci.appveyor.com/project/jmwright/cadquery/branch/master)
1010
[![Coverage Status](https://coveralls.io/repos/github/dcowden/cadquery/badge.svg?branch=master)](https://coveralls.io/github/dcowden/cadquery?branch=master)
11-
[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=1.1.0&x2=0)](https://github.com/dcowden/cadquery/releases/tag/v1.1.0)
11+
[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=1.2.0&x2=0)](https://github.com/dcowden/cadquery/releases/tag/v1.2.0)
1212
[![License](https://img.shields.io/badge/license-Apache2-blue.svg)](https://github.com/dcowden/cadquery/blob/master/LICENSE)
1313

1414
CadQuery is an intuitive, easy-to-use python based language for building parametric 3D CAD models. CadQuery is for 3D CAD what jQuery is for javascript. Imagine selecting Faces of a 3d object the same way you select DOM objects with JQuery!

cadquery/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
'TypeSelector','DirectionMinMaxSelector','StringSyntaxSelector','Selector','plugins',
1919
]
2020

21-
__version__ = "1.1.0"
21+
__version__ = "1.2.0"

changes.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Changes
22
=======
33

44

5-
v1.2.0 (Unreleased)
5+
v1.2.0
66
------
77
* Multiple Anaconda CI fixes by @adam-urbanczyk
88
* @adam-urbanczyk added AppVeyor with Windows test integration to the CI pipeline
@@ -34,8 +34,8 @@ v1.1.0
3434
* SVG export improvements including orientation control from @RustyVermeer #232
3535
* Improved test coverage
3636
* @galou fixed braille example #229
37-
38-
37+
38+
3939
v1.0.0
4040
------
4141
* Added an option to do symmetric extrusion about the workplane (thanks @adam-urbanczyk)
@@ -49,7 +49,7 @@ v1.0.0
4949
v0.5.2
5050
------
5151
* Added the sweep operation #33
52-
52+
5353
v0.5.1
5454
------
5555
* Mirroring fixes (thanks @huskier)
@@ -84,7 +84,7 @@ v0.3.0
8484
* Add the ability to find the center of the bounding box, rather than the center of mass (thanks @huskier) #122
8585
* Changed normalize function to normalized to match OCC/PythonOCC nomenclature #124
8686
* Added a label attribute to all freecad_impl.shapes so that they can have IDs attached to them #124
87-
87+
8888
v0.2.0
8989
-----
9090
* Fixed versioning to match the semantic versioning scheme
@@ -103,7 +103,7 @@ v0.2.0
103103
* Increased test coverage
104104
* Added a clean function to keep some operations from failing on solids that need simplified (thanks @hyOzd)
105105
* Added a mention of the new Google Group to the readme
106-
106+
107107
v0.1.8
108108
-----
109109
* Added toFreecad() function as a convenience for val().wrapped
@@ -124,11 +124,11 @@ v0.1.7
124124
-----
125125
* Added revolve operation and supporting tests
126126
* Fixed minor documentation errors
127-
127+
128128
v0.1.6
129129
-----
130130
* Added STEP import and supporting tests
131-
131+
132132
v0.1
133133
-----
134134
* Initial Version

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = '1.1'
58+
version = '1.2'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '1.1.0'
60+
release = '1.2.0'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818

1919
#if we are building in travis, use the build number as the sub-minor version
20-
version = '1.1.0'
20+
version = '1.2.0'
2121
if 'TRAVIS_TAG' in list(os.environ.keys()):
2222
version= os.environ['TRAVIS_TAG']
2323

0 commit comments

Comments
 (0)