Skip to content

Commit 4a44f29

Browse files
committed
Version bump to 1.2.0
1 parent dcac361 commit 4a44f29

File tree

7 files changed

+28
-16
lines changed

7 files changed

+28
-16
lines changed

Libs/cadquery/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!

Libs/cadquery/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"

Libs/cadquery/changes.md

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

44

5+
v1.2.0
6+
------
7+
* Multiple Anaconda CI fixes by @adam-urbanczyk
8+
* @adam-urbanczyk added AppVeyor with Windows test integration to the CI pipeline
9+
* @adam-urbanczyk added codecov in Travis CI configuration
10+
* @jpmlt updated sweep operation to work with a list of wires #249
11+
* @gntech added ability to draw an arc from the current point to endPoint with an arc defined by the sag (sagitta) #253
12+
* @gntech added ability to draw an arc from the current point to endPoint with an arc defined by the radius #254
13+
* @gntech updated the close function to be smarter when the start point and end points are the same #257
14+
* @gntech removed some waste from the CI test environment by avoiding the installation of the FreeCAD docs #256
15+
16+
517
v1.1.0
618
------
719
* Fixes and addition of graphical examples for selectors (thanks @adam-urbanczyk) #181
@@ -22,8 +34,8 @@ v1.1.0
2234
* SVG export improvements including orientation control from @RustyVermeer #232
2335
* Improved test coverage
2436
* @galou fixed braille example #229
25-
26-
37+
38+
2739
v1.0.0
2840
------
2941
* Added an option to do symmetric extrusion about the workplane (thanks @adam-urbanczyk)
@@ -37,7 +49,7 @@ v1.0.0
3749
v0.5.2
3850
------
3951
* Added the sweep operation #33
40-
52+
4153
v0.5.1
4254
------
4355
* Mirroring fixes (thanks @huskier)
@@ -72,7 +84,7 @@ v0.3.0
7284
* Add the ability to find the center of the bounding box, rather than the center of mass (thanks @huskier) #122
7385
* Changed normalize function to normalized to match OCC/PythonOCC nomenclature #124
7486
* Added a label attribute to all freecad_impl.shapes so that they can have IDs attached to them #124
75-
87+
7688
v0.2.0
7789
-----
7890
* Fixed versioning to match the semantic versioning scheme
@@ -91,7 +103,7 @@ v0.2.0
91103
* Increased test coverage
92104
* Added a clean function to keep some operations from failing on solids that need simplified (thanks @hyOzd)
93105
* Added a mention of the new Google Group to the readme
94-
106+
95107
v0.1.8
96108
-----
97109
* Added toFreecad() function as a convenience for val().wrapped
@@ -112,11 +124,11 @@ v0.1.7
112124
-----
113125
* Added revolve operation and supporting tests
114126
* Fixed minor documentation errors
115-
127+
116128
v0.1.6
117129
-----
118130
* Added STEP import and supporting tests
119-
131+
120132
v0.1
121133
-----
122134
* Initial Version

Libs/cadquery/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.

Libs/cadquery/requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
sphinx-rtd-theme==0.1.9
2-
travis-sphinx
2+
travis-sphinx==2.1.0
33
Sphinx==1.3.2
44
coverage
55
coveralls

Libs/cadquery/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

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The CadQuery Module for FreeCAD
22
=======================
3-
[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=1.1.0&x2=0)](https://github.com/jmwright/cadquery-freecad-module/releases/tag/v1.1.0)
3+
[![GitHub version](https://d25lcipzij17d.cloudfront.net/badge.svg?id=gh&type=6&v=1.2.0&x2=0)](https://github.com/jmwright/cadquery-freecad-module/releases/tag/v1.2.0)
44
[![License](https://img.shields.io/badge/license-LGPL-lightgrey.svg)](https://github.com/jmwright/cadquery-freecad-module/blob/master/LICENSE)
55

66
## Introduction
@@ -14,7 +14,7 @@ Module that adds a tabbed CadQuery editor to FreeCAD. Please see the [wiki](http
1414
1. Follow the instructions [here](https://github.com/FreeCAD/FreeCAD-addons/blob/master/README.md) to install and execute the FreeCAD-Addons macro.
1515
2. Choose `cadquery_module` from the list in the datalog box and click Install/Update.
1616
3. Restart FreeCAD.
17-
17+
1818
You can use the Install/Update button periodically to get the latest changes to this module.
1919

2020
## Manual Installation
@@ -24,7 +24,7 @@ Installation is handled slightly differently whether you are installing version
2424

2525
### Installing v1.0.0.1 and Earlier
2626

27-
Download the [latest released version](https://github.com/jmwright/cadquery-freecad-module/releases), extract the archive file, and copy the `CadQuery` subdirectory to FreeCAD's `Mod` directory on your system.
27+
Download the [latest released version](https://github.com/jmwright/cadquery-freecad-module/releases), extract the archive file, and copy the `CadQuery` subdirectory to FreeCAD's `Mod` directory on your system.
2828

2929
### Installing v1.0.0.2 and Later
3030

0 commit comments

Comments
 (0)