Skip to content

Commit 4d1aab6

Browse files
committed
Bump the minor version
1 parent 35dcef7 commit 4d1aab6

File tree

7 files changed

+26
-15
lines changed

7 files changed

+26
-15
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.0.4_amd64.deb
106+
sudo dpkg -i dragonfire_1.1.0_amd64.deb
107107
```
108108

109109

debian/changelog

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,20 @@
1-
dragonfire (1.0.7) unstable; urgency=medium
2-
3-
* First Change
4-
* Second Change
5-
6-
-- Mehmet Mert Yildiran <[email protected]> Thu, Dec 12 2019 00:28:47 +0300
1+
dragonfire (1.1.0) unstable; urgency=medium
2+
3+
* The badge generation service changed from Badgen to Shields
4+
* Omniscient module replaced with DeepPavlov SQuAD BERT and renamed as ODQA
5+
* Loglevel of TensorFlow set to ERROR and disabled FutureWarning(s)
6+
* Added a GitHub workflow for automated Docker builds
7+
* Travis CI is removed
8+
* `requests` package version upgraded to `>=2.20.0`
9+
* Post-installation scripts are merged
10+
* The Docker image has been updated
11+
* Added separate GitHub workflows to handle Automated Tests and Linter Checks
12+
* Added a GitHub workflow to test the ODQA module's performance against HotpotQA dataset
13+
* Fixed most of the major code maintainability issues detected by Code Climate
14+
* Added a GitHub workflow to automatically publish a GitHub release, build and upload a Debian package to release assets
15+
* Checksum values are updated in the post-installation script
16+
17+
-- Mehmet Mert Yildiran <[email protected]> Thu, Dec 12 2019 03:43:35 +0300
718

819
dragonfire (1.0.4) unstable; urgency=medium
920

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.0.7
2+
Version=1.1.0
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.0.7','console_scripts','dragonfire'
3-
__requires__ = 'dragonfire==1.0.7'
2+
# EASY-INSTALL-ENTRY-SCRIPT: 'dragonfire==1.1.0','console_scripts','dragonfire'
3+
__requires__ = 'dragonfire==1.1.0'
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.0.7', 'console_scripts', 'dragonfire')()
11+
load_entry_point('dragonfire==1.1.0', '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.0.7'
32+
version = '1.1.0'
3333
# The full version, including alpha/beta/rc tags
34-
release = '1.0.7'
34+
release = '1.1.0'
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.0.7'
58+
__version__ = '1.1.0'
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
@@ -64,7 +64,7 @@ def pkgconfig(*packages):
6464
# Versions should comply with PEP440. For a discussion on single-sourcing
6565
# the version across setup.py and the project code, see
6666
# https://packaging.python.org/en/latest/single_source_version.html
67-
version='1.0.7',
67+
version='1.1.0',
6868
description='Dragonfire is an open source virtual assistant project for Ubuntu based Linux distributions',
6969
long_description=long_description,
7070
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)