Updated the version numbers for the v0.1.8 release.

This commit is contained in:
Jeremy Wright 2015-03-04 07:48:45 -05:00
parent bdfb450ba9
commit 2dd6841bae
5 changed files with 50 additions and 49 deletions

View File

@ -19,7 +19,7 @@ Using CadQuery, you can write short, simple scripts that produce high quality CA
Getting Started With CadQuery
========================================
The easiest way to get started with CadQuery is to Install FreeCAD ( version 14 recommended ) (http://www.freecadweb.org/) , and then to use Jeremy's Great CadQuery-FreeCAD plugin here:
The easiest way to get started with CadQuery is to Install FreeCAD ( version 14 recommended ) (http://www.freecadweb.org/), and then to use our great CadQuery-FreeCAD plugin here:
https://github.com/jmwright/cadquery-freecad-module
@ -32,8 +32,9 @@ It has tons of awesome features like integration with FreeCAD so you can see you
Recently Added Features
========================================
* 12/5/14 -- New FreeCAD/CadQuery Module! https://github.com/jmwright/cadquery-freecad-module
* 10/25/14 -- Added Revolution Feature ( thanks Jeremy ! )
* 02/21/15 -- Multiple bug fixes and tests added, including a bugfix for moveTo (thanks @xix-xeaon)
* 12/31/14 -- Added Travis CI config to automatically test our code (thanks @krasin)
* 12/05/14 -- New FreeCAD/CadQuery Module! https://github.com/jmwright/cadquery-freecad-module
Why CadQuery instead of OpenSCAD?

View File

@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: cadquery
Version: 0.1.7
Version: 0.1.8
Summary: CadQuery is a parametric scripting language for creating and traversing CAD models
Home-page: https://github.com/dcowden/cadquery
Author: David Cowden

View File

@ -16,4 +16,4 @@ __all__ = [
'Shape','Vertex','Edge','Wire','Solid','Shell','Compound','exporters', 'importers', 'NearestToPointSelector','ParallelDirSelector','DirectionSelector','PerpendicularDirSelector','TypeSelector','DirectionMinMaxSelector','StringSyntaxSelector','Selector','plugins'
]
__version__ = "0.1.7"
__version__ = "0.1.8"

View File

@ -15,7 +15,7 @@ v0.1.7
* Added revolve operation and supporting tests
* Fixed minor documentation errors
v0.1.8 (Unreleased)
v0.1.8
-----
* Added toFreecad() function as a convenience for val().wrapped
* Converted all examples to use toFreecad()

View File

@ -2,7 +2,7 @@ from setuptools import setup
setup(
name='cadquery',
version='0.1.7',
version='0.1.8',
url='https://github.com/dcowden/cadquery',
license='LGPL',
author='David Cowden',