Skip to content

Commit

Permalink
Bump the patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
mertyildiran committed Dec 18, 2019
1 parent 297cf33 commit 0951db7
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Feel free to join [our Gitter chat room](https://gitter.im/DragonComputer/Lobby)
To run Dragonfire on a desktop Debian or Ubuntu system, either download the [latest release](https://github.com/DragonComputer/Dragonfire/releases/latest) (the `.deb` file) and install as follows:

```Shell
sudo dpkg -i dragonfire_1.1.0_amd64.deb
sudo dpkg -i dragonfire_1.1.1_amd64.deb
```


Expand Down
8 changes: 8 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
dragonfire (1.1.1) unstable; urgency=medium

* Upgraded pip version from `9.0.1` to `19.3.1` for TensorFlow `1.15.0`
* Upgraded TensorFlow version from `1.14.0` to `1.15.0`
* Upgraded DeepPavlov version from `0.6.1` to `0.7.1`

-- Mehmet Mert Yildiran <mehmetmertyildiran@gmail.com> Wed, Dec 18 2019 22:15:17 +0300

dragonfire (1.1.0) unstable; urgency=medium

* The badge generation service changed from Badgen to Shields
Expand Down
2 changes: 1 addition & 1 deletion debian/dragonfire.desktop
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[Desktop Entry]
Version=1.1.0
Version=1.1.1
Type=Application
Name=Dragonfire
Comment=Virtual Assistant for Linux
Expand Down
6 changes: 3 additions & 3 deletions debian/fire/dragonfire
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
#!/usr/bin/python3
# EASY-INSTALL-ENTRY-SCRIPT: 'dragonfire==1.1.0','console_scripts','dragonfire'
__requires__ = 'dragonfire==1.1.0'
# EASY-INSTALL-ENTRY-SCRIPT: 'dragonfire==1.1.1','console_scripts','dragonfire'
__requires__ = 'dragonfire==1.1.1'
import re
import sys
from pkg_resources import load_entry_point

if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(
load_entry_point('dragonfire==1.1.0', 'console_scripts', 'dragonfire')()
load_entry_point('dragonfire==1.1.1', 'console_scripts', 'dragonfire')()
)
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@
author = 'Mehmet Mert Yıldıran'

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


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion dragonfire/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
from sqlalchemy.orm import sessionmaker # ORM submodule of SQLAlchemy


__version__ = '1.1.0'
__version__ = '1.1.1'

DRAGONFIRE_PATH = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
FNULL = open(os.devnull, 'w')
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def read_requirements():
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='1.1.0',
version='1.1.1',
description='Dragonfire is an open source virtual assistant project for Ubuntu based Linux distributions',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 0951db7

Please sign in to comment.