Skip to content

Commit

Permalink
Release v.2.2.a0
Browse files Browse the repository at this point in the history
  • Loading branch information
dmaccarthy committed Oct 10, 2020
1 parent ec96080 commit 5c93d11
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ sc8pr 2 features include:
* a selection of GUI controls
* curve plotting
* robotics simulator
* LaTeX rendering (using [codecogs.com](http://www.codecogs.com/latex/about.php))

For more information, please see the [documentation](http://dmaccarthy.github.io/sc8pr/).

Expand Down
4 changes: 2 additions & 2 deletions sc8pr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
#
# You should have received a copy of the GNU General Public License
# along with "sc8pr". If not, see <http://www.gnu.org/licenses/>.
from pygame.examples.oldalien import Img

version = 2, 2, "dev"

version = 2, 2, "a0"

import sys, os, struct, zlib
from math import hypot
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

version = 2, 2, "dev"
version = 2, 2, "a0"
ver = "{}.{}.{}".format(*version)
archive = "master" if version[-1] == "dev" else "v" + ver
with open("README.txt", encoding="utf8") as f: readme = f.read()
Expand Down

0 comments on commit 5c93d11

Please sign in to comment.