Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
einarf committed Sep 2, 2019
1 parent 52498e1 commit dbb2750
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
* Added missing type hints
* Revived the STL loader
* Documentation
* Added `moderngl_window.__version__` attribute

## 1.2.0

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ def __getattr__(cls, name):
author = 'Einar Forselv'

# The short X.Y version
version = '1.2.0'
version = '1.3.0'
# The full version, including alpha/beta/rc tags
release = '1.2.0'
release = '1.3.0'


# -- General configuration ---------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions moderngl_window/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
from moderngl_window.conf import settings
from moderngl_window.utils.module_loading import import_string

__version__ = '1.3.0'

IGNORE_DIRS = [
'__pycache__',
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="moderngl_window",
version="1.2.0",
version="1.3.0",
description="A cross platform helper library for ModernGL making window creation and resource loading simple",
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
Expand Down

0 comments on commit dbb2750

Please sign in to comment.