Skip to content

Commit

Permalink
⬆️ Bump the version
Browse files Browse the repository at this point in the history
and add --no-guessing-deps to Debian packaging rules
  • Loading branch information
mertyildiran committed Mar 6, 2019
1 parent 3d4b4d2 commit ce9d76e
Show file tree
Hide file tree
Showing 8 changed files with 26 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Feel free to join [our Gitter chat room](https://gitter.im/DragonComputer/Lobby)
Download the [latest release](https://github.com/DragonComputer/Dragonfire/releases/latest) (the `.deb` file) and:

```Shell
sudo dpkg -i dragonfire_1.0.1_amd64.deb
sudo dpkg -i dragonfire_1.0.2_amd64.deb
```

or with Docker: `docker pull dragoncomputer/dragonfire`
Expand Down
12 changes: 12 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
dragonfire (1.0.2) unstable; urgency=medium

* libgtk2.0-0 and gir1.2-gtk-3.0 dependencies are added
* The issue related to inactive lock in the speech recognizers is fixed
* deepspeech Python package dependency is upgraded from 0.2.0a5 to 0.4.1
* The DeepSpeech the model from 0.1.1 to 0.4.1
* Time telling feature(a built-in command) is added
* Several issues in built-in commands are fixed
* Release version mismatch is fixed

-- Mehmet Mert Yildiran <[email protected]> Wed, 6 Mar 2019 04:27:54 +0300

dragonfire (1.0.1) unstable; urgency=medium

* Dependency issues are fixed
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.1
Version=1.0.2
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.0','console_scripts','dragonfire'
__requires__ = 'dragonfire==1.0.0'
# EASY-INSTALL-ENTRY-SCRIPT: 'dragonfire==1.0.2','console_scripts','dragonfire'
__requires__ = 'dragonfire==1.0.2'
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.0', 'console_scripts', 'dragonfire')()
load_entry_point('dragonfire==1.0.2', 'console_scripts', 'dragonfire')()
)
5 changes: 4 additions & 1 deletion debian/rules
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@

#export DH_VERBOSE = 1
export PYBUILD_NAME = foo
export PYBUILD_DISABLE_python3=test
export PYBUILD_DISABLE_python3 = test

%:
dh $@ --with python3 --buildsystem=pybuild

override_dh_python3:
dh_python3 --no-guessing-deps

override_dh_installman:
dh_installman debian/dragonfire.1
6 changes: 3 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@
# -- Project information -----------------------------------------------------

project = 'Dragonfire'
copyright = '2018, Mehmet Mert Yıldıran'
copyright = '2019, Mehmet Mert Yıldıran'
author = 'Mehmet Mert Yıldıran'

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


# -- 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 @@ -52,7 +52,7 @@
from sqlalchemy.orm import sessionmaker # ORM submodule of SQLAlchemy


__version__ = '1.0.0'
__version__ = '1.0.2'

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.1',
version='1.0.2',
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 ce9d76e

Please sign in to comment.