Skip to content

Commit

Permalink
Bump the minor version
Browse files Browse the repository at this point in the history
  • Loading branch information
mertyildiran committed Dec 12, 2019
1 parent 35dcef7 commit 4d1aab6
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 15 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.0.4_amd64.deb
sudo dpkg -i dragonfire_1.1.0_amd64.deb
```


Expand Down
23 changes: 17 additions & 6 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
dragonfire (1.0.7) unstable; urgency=medium

* First Change
* Second Change

-- Mehmet Mert Yildiran <[email protected]> Thu, Dec 12 2019 00:28:47 +0300
dragonfire (1.1.0) unstable; urgency=medium

* The badge generation service changed from Badgen to Shields
* Omniscient module replaced with DeepPavlov SQuAD BERT and renamed as ODQA
* Loglevel of TensorFlow set to ERROR and disabled FutureWarning(s)
* Added a GitHub workflow for automated Docker builds
* Travis CI is removed
* `requests` package version upgraded to `>=2.20.0`
* Post-installation scripts are merged
* The Docker image has been updated
* Added separate GitHub workflows to handle Automated Tests and Linter Checks
* Added a GitHub workflow to test the ODQA module's performance against HotpotQA dataset
* Fixed most of the major code maintainability issues detected by Code Climate
* Added a GitHub workflow to automatically publish a GitHub release, build and upload a Debian package to release assets
* Checksum values are updated in the post-installation script

-- Mehmet Mert Yildiran <[email protected]> Thu, Dec 12 2019 03:43:35 +0300

dragonfire (1.0.4) unstable; urgency=medium

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.0.7
Version=1.1.0
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.0.7','console_scripts','dragonfire'
__requires__ = 'dragonfire==1.0.7'
# EASY-INSTALL-ENTRY-SCRIPT: 'dragonfire==1.1.0','console_scripts','dragonfire'
__requires__ = 'dragonfire==1.1.0'
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.0.7', 'console_scripts', 'dragonfire')()
load_entry_point('dragonfire==1.1.0', '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.0.7'
version = '1.1.0'
# The full version, including alpha/beta/rc tags
release = '1.0.7'
release = '1.1.0'


# -- 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.0.7'
__version__ = '1.1.0'

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 @@ -64,7 +64,7 @@ def pkgconfig(*packages):
# 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.0.7',
version='1.1.0',
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 4d1aab6

Please sign in to comment.