diff --git a/README.rst b/README.rst index bc18c71..38fb425 100644 --- a/README.rst +++ b/README.rst @@ -1,7 +1,7 @@ -.. image:: http://dcowden.github.io/cadquery/_static/cadquery_logo_dark.svg +.. image:: https://raw.githubusercontent.com/dcowden/cadquery/master/doc/_static/logo/cadquery_logo_dark.svg -ANNOUNCEMENT! CadQuery has moved to https://github.com/CadQuery/cadquery and this repo will be archived eventually. +ANNOUNCEMENT! CadQuery has moved to https://github.com/CadQuery/cadquery and this repo has been archived. ========================================================================================================================= What is CadQuery? diff --git a/cadquery.egg-info/PKG-INFO b/cadquery.egg-info/PKG-INFO index daae26e..20ad375 100644 --- a/cadquery.egg-info/PKG-INFO +++ b/cadquery.egg-info/PKG-INFO @@ -1,15 +1,15 @@ Metadata-Version: 1.1 Name: cadquery -Version: 1.2.1 +Version: 1.2.5 Summary: CadQuery is a parametric scripting language for creating and traversing CAD models Home-page: https://github.com/dcowden/cadquery Author: David Cowden Author-email: dave.cowden@gmail.com License: Apache Public License 2.0 -Description: .. image:: http://dcowden.github.io/cadquery/_static/cadquery_logo_dark.svg +Description: .. image:: https://raw.githubusercontent.com/dcowden/cadquery/master/doc/_static/logo/cadquery_logo_dark.svg - ANNOUNCEMENT! CadQuery has moved to https://github.com/CadQuery/cadquery and this repo will be archived eventually. + ANNOUNCEMENT! CadQuery has moved to https://github.com/CadQuery/cadquery and this repo has been archived. ========================================================================================================================= What is CadQuery? @@ -63,6 +63,7 @@ Description: .. image:: http://dcowden.github.io/cadquery/_static/cadquery_logo_ Installation instructions for all following use cases can be found `here `_. It is currently possible to use CadQuery for your own projects in 4 different ways: + * as a plugin for FreeCAD * using the Docker Image to operate CadQuery as a CLI * as a plugin running on a Jupyter Notebook server @@ -117,7 +118,9 @@ Description: .. image:: http://dcowden.github.io/cadquery/_static/cadquery_logo_ ... STEP output on the console - Build local models and output to the same directory:: + Build local models and output to the same directory + + .. code-block:: bash docker run -v $PWD:/home/cq -i dcowden/cadquery:latest build --in_spec Ex001_Simple_Block.py --format STEP INFO: Reading from file 'Ex001_Simple_Block.py' diff --git a/cadquery/__init__.py b/cadquery/__init__.py index 8f26a8c..931034e 100644 --- a/cadquery/__init__.py +++ b/cadquery/__init__.py @@ -1,3 +1,7 @@ +import warnings +print("WARNING: CadQuery 1.x is no longer supported. Please upgrade to CadQuery 2.x https://github.com/CadQuery/cadquery") +warnings.warn("CadQuery 1.x is no longer supported. Please upgrade to CadQuery 2.x https://github.com/CadQuery/cadquery", DeprecationWarning) + #these items point to the freecad implementation from .freecad_impl.geom import Plane,BoundBox,Vector,Matrix,sortWiresByBuildOrder from .freecad_impl.shapes import Shape,Vertex,Edge,Face,Wire,Solid,Shell,Compound @@ -18,4 +22,4 @@ 'TypeSelector','DirectionMinMaxSelector','StringSyntaxSelector','Selector','plugins', ] -__version__ = "1.2.0" +__version__ = "1.2.5" diff --git a/changes.md b/changes.md index db93722..ecc83ad 100644 --- a/changes.md +++ b/changes.md @@ -1,6 +1,10 @@ Changes ======= +v1.2.5 +------ + * This is a deprecation release to clean things up so that the repository can be archived + v1.2.0 ------ diff --git a/setup.py b/setup.py index f91b67e..7797746 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ #if we are building in travis, use the build number as the sub-minor version -version = '1.2.1' +version = '1.2.5' version = os.environ.get('TRAVIS_TAG', None) or version setup(