Skip to content

Commit 0951db7

Browse files
committed
Bump the patch version
1 parent 297cf33 commit 0951db7

File tree

7 files changed

+17
-9
lines changed

7 files changed

+17
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Feel free to join [our Gitter chat room](https://gitter.im/DragonComputer/Lobby)
103103
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:
104104

105105
```Shell
106-
sudo dpkg -i dragonfire_1.1.0_amd64.deb
106+
sudo dpkg -i dragonfire_1.1.1_amd64.deb
107107
```
108108

109109

debian/changelog

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
dragonfire (1.1.1) unstable; urgency=medium
2+
3+
* Upgraded pip version from `9.0.1` to `19.3.1` for TensorFlow `1.15.0`
4+
* Upgraded TensorFlow version from `1.14.0` to `1.15.0`
5+
* Upgraded DeepPavlov version from `0.6.1` to `0.7.1`
6+
7+
-- Mehmet Mert Yildiran <[email protected]> Wed, Dec 18 2019 22:15:17 +0300
8+
19
dragonfire (1.1.0) unstable; urgency=medium
210

311
* The badge generation service changed from Badgen to Shields

debian/dragonfire.desktop

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[Desktop Entry]
2-
Version=1.1.0
2+
Version=1.1.1
33
Type=Application
44
Name=Dragonfire
55
Comment=Virtual Assistant for Linux

debian/fire/dragonfire

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/usr/bin/python3
2-
# EASY-INSTALL-ENTRY-SCRIPT: 'dragonfire==1.1.0','console_scripts','dragonfire'
3-
__requires__ = 'dragonfire==1.1.0'
2+
# EASY-INSTALL-ENTRY-SCRIPT: 'dragonfire==1.1.1','console_scripts','dragonfire'
3+
__requires__ = 'dragonfire==1.1.1'
44
import re
55
import sys
66
from pkg_resources import load_entry_point
77

88
if __name__ == '__main__':
99
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
1010
sys.exit(
11-
load_entry_point('dragonfire==1.1.0', 'console_scripts', 'dragonfire')()
11+
load_entry_point('dragonfire==1.1.1', 'console_scripts', 'dragonfire')()
1212
)

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@
2929
author = 'Mehmet Mert Yıldıran'
3030

3131
# The short X.Y version
32-
version = '1.1.0'
32+
version = '1.1.1'
3333
# The full version, including alpha/beta/rc tags
34-
release = '1.1.0'
34+
release = '1.1.1'
3535

3636

3737
# -- General configuration ---------------------------------------------------

dragonfire/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
from sqlalchemy.orm import sessionmaker # ORM submodule of SQLAlchemy
5656

5757

58-
__version__ = '1.1.0'
58+
__version__ = '1.1.1'
5959

6060
DRAGONFIRE_PATH = os.path.dirname(os.path.abspath(inspect.getfile(inspect.currentframe())))
6161
FNULL = open(os.devnull, 'w')

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def read_requirements():
8080
# Versions should comply with PEP440. For a discussion on single-sourcing
8181
# the version across setup.py and the project code, see
8282
# https://packaging.python.org/en/latest/single_source_version.html
83-
version='1.1.0',
83+
version='1.1.1',
8484
description='Dragonfire is an open source virtual assistant project for Ubuntu based Linux distributions',
8585
long_description=long_description,
8686
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)