Skip to content

Commit

Permalink
Release 2.1.b0
Browse files Browse the repository at this point in the history
Update version info
  • Loading branch information
dmaccarthy committed Feb 17, 2019
1 parent 99bfc36 commit c01e142
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sc8pr/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# along with "sc8pr". If not, see <http://www.gnu.org/licenses/>.
from math import hypot

version = 2, 1, "dev"
version = 2, 1, "b0"

import sys, os, struct, zlib
import pygame
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from setuptools import setup, find_packages

version = 2, 1, "dev"
version = 2, 1, "b0"
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 Expand Up @@ -32,7 +32,7 @@
# Additional data
keywords = "graphics animation sprite gui robotics pygame educational",
classifiers = [
"Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
Expand Down

0 comments on commit c01e142

Please sign in to comment.