Skip to content

Commit

Permalink
release v0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mozman committed Feb 24, 2019
1 parent 92c1f6d commit a01ed68
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 12 deletions.
10 changes: 4 additions & 6 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@
News
====

Version 0.9b1 - dev
-------------------
Version 0.9 - 2019-02-24
------------------------

Beta release - all planned features for next release completed

- Release notes: https://ezdxf.mozman.at/release-v0-9-0.html
- IMPORTANT: Python 2 support REMOVED, if Python 2 support needed: add `ezdxf<0.9.0` to your `requirements.txt`
- Release notes: https://ezdxf.mozman.at/release-v0-9.html
- IMPORTANT: Python 2 support REMOVED, if Python 2 support needed: add `ezdxf<0.9` to your `requirements.txt`
- NEW: testing on Manjaro Linux in a VM by tox
- CHANGE: converted NEWS.rst to NEWS.md and README.rst to README.md
- CHANGE: moved `Importer()` from `ezdxf.tools` to `ezdxf.addons` - internal structures of modern DXF files are too complex
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Quick-Info

- ezdxf is a Python package to create new DXF files and read/modify/write existing DXF files
- the intended audience are developers
- requires at least CPython 3.5, for Python 2 support use ezdxf < 0.9.0
- requires at least CPython 3.5, for Python 2 support use ezdxf < 0.9
- OS independent
- additional required packages: [pyparsing](https://pypi.org/project/pyparsing/)
- MIT-License
Expand All @@ -29,7 +29,7 @@ a simple example:
```python
import ezdxf

drawing = ezdxf.new(dxfversion='AC1024')
drawing = ezdxf.new(dxfversion='R2010')
# alternative: use the AutoCAD release name
# ezdxf.new(dxfversion='R2010')
modelspace = drawing.modelspace()
Expand Down Expand Up @@ -78,7 +78,7 @@ Install develop version (only if you have to)::

For Python 2 users:

pip install ezdxf<0.9.0
pip install ezdxf<0.9


or from source:
Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Welcome! This is the documentation for ezdxf release |release|, last updated |to

.. note::

**Python 2** support REMOVED, *ezdxf* >= v0.9.0 requires at least **Python 3.5**
**Python 2** support REMOVED, *ezdxf* >= v0.9 requires at least **Python 3.5**


Quick-Info
Expand Down
4 changes: 2 additions & 2 deletions ezdxf/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@
# 1. bug fix release beta0: VERSION = "0.9.1b0"; version = (0, 9, 1, 'b0')
# 2. bug fix release: VERSION = "0.9.2"; version = (0, 9, 2, 'release')

version = (0, 9, 0, 'b1') # also update VERSION in setup.py
__version__ = "0.9b1"
version = (0, 9, 0, 'release') # also update VERSION in setup.py
__version__ = "0.9"

0 comments on commit a01ed68

Please sign in to comment.