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

Commit

Permalink
Updated version numbers to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jmwright committed May 9, 2018
1 parent c67fe5d commit 6be92a8
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ What is a CadQuery?
[![Travis Build Status](https://travis-ci.org/dcowden/cadquery.svg?branch=master)](https://travis-ci.org/dcowden/cadquery?branch=master)
[![Build status](https://ci.appveyor.com/api/projects/status/c7u4yjl8xxlokrw0/branch/master?svg=true)](https://ci.appveyor.com/project/jmwright/cadquery/branch/master)
[![Coverage Status](https://coveralls.io/repos/github/dcowden/cadquery/badge.svg?branch=master)](https://coveralls.io/github/dcowden/cadquery?branch=master)
[![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)
[![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)
[![License](https://img.shields.io/badge/license-Apache2-blue.svg)](https://github.com/dcowden/cadquery/blob/master/LICENSE)

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!
Expand Down
2 changes: 1 addition & 1 deletion cadquery/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@
'TypeSelector','DirectionMinMaxSelector','StringSyntaxSelector','Selector','plugins',
]

__version__ = "1.1.0"
__version__ = "1.2.0"
16 changes: 8 additions & 8 deletions changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Changes
=======


v1.2.0 (Unreleased)
v1.2.0
------
* Multiple Anaconda CI fixes by @adam-urbanczyk
* @adam-urbanczyk added AppVeyor with Windows test integration to the CI pipeline
Expand Down Expand Up @@ -34,8 +34,8 @@ v1.1.0
* SVG export improvements including orientation control from @RustyVermeer #232
* Improved test coverage
* @galou fixed braille example #229


v1.0.0
------
* Added an option to do symmetric extrusion about the workplane (thanks @adam-urbanczyk)
Expand All @@ -49,7 +49,7 @@ v1.0.0
v0.5.2
------
* Added the sweep operation #33

v0.5.1
------
* Mirroring fixes (thanks @huskier)
Expand Down Expand Up @@ -84,7 +84,7 @@ v0.3.0
* Add the ability to find the center of the bounding box, rather than the center of mass (thanks @huskier) #122
* Changed normalize function to normalized to match OCC/PythonOCC nomenclature #124
* Added a label attribute to all freecad_impl.shapes so that they can have IDs attached to them #124

v0.2.0
-----
* Fixed versioning to match the semantic versioning scheme
Expand All @@ -103,7 +103,7 @@ v0.2.0
* Increased test coverage
* Added a clean function to keep some operations from failing on solids that need simplified (thanks @hyOzd)
* Added a mention of the new Google Group to the readme

v0.1.8
-----
* Added toFreecad() function as a convenience for val().wrapped
Expand All @@ -124,11 +124,11 @@ v0.1.7
-----
* Added revolve operation and supporting tests
* Fixed minor documentation errors

v0.1.6
-----
* Added STEP import and supporting tests

v0.1
-----
* Initial Version
4 changes: 2 additions & 2 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = '1.1'
version = '1.2'
# The full version, including alpha/beta/rc tags.
release = '1.1.0'
release = '1.2.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


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

Expand Down

0 comments on commit 6be92a8

Please sign in to comment.