Skip to content

Commit 81e4e27

Browse files
committed
Bump the version
1 parent 8ff1be9 commit 81e4e27

File tree

11 files changed

+31
-14
lines changed

11 files changed

+31
-14
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ RUN mkdir $DRAGONFIRE_DIR
3434
RUN mkdir $DEEPCONV_DIR
3535

3636
# Download the DeepConversation Tensorflow model
37-
ADD https://github.com/DragonComputer/Dragonfire/releases/download/v1.0.3/deepconv-v3.tar.gz $DEEPCONV_DIR
37+
ADD https://github.com/DragonComputer/Dragonfire/releases/download/v1.0.4/deepconv-v3.tar.gz $DEEPCONV_DIR
3838
RUN cd $DEEPCONV_DIR && tar xvfz deepconv-v3.tar.gz
3939

4040
# Install OpenSSL and libffi for Tensorflow

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ Feel free to join [our Gitter chat room](https://gitter.im/DragonComputer/Lobby)
5555
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:
5656

5757
```Shell
58-
sudo dpkg -i dragonfire_1.0.2_amd64.deb
58+
sudo dpkg -i dragonfire_1.0.4_amd64.deb
5959
```
6060

6161

6262
or clone the GitHub repository and run
6363

6464
```Shell
65-
sudo ./install.sh
65+
make install
6666
```
6767

6868
in the repository directory.

debian/changelog

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
dragonfire (1.0.4) unstable; urgency=medium
2+
3+
* Upgraded TensorFlow version from 1.0.0 to 1.14.0
4+
* Upgraded spaCy version from 2.0.13 to 2.1.3
5+
* Upgraded NeuralCoref version to 4.0
6+
* Updated the DeepConversation Tensorflow model and published (v3)
7+
* Refactored some of the NLP methods
8+
* Updated the Docker image
9+
* Added a Makefile to simplify installation commands
10+
* Fixed some of the tests
11+
* Fixed the CI pipelines
12+
* Implemented code coverage by integrating CI to Codecov
13+
* Integrated Code Climate to have automated code reviews and metrics
14+
* Fixed Read the Docs documentation build pipeline
15+
16+
-- Mehmet Mert Yildiran <[email protected]> Fri, Nov 29 2019 01:20:45 +0300
17+
118
dragonfire (1.0.2) unstable; urgency=medium
219

320
* libgtk2.0-0 and gir1.2-gtk-3.0 dependencies are added

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.2
2+
Version=1.0.4
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.2','console_scripts','dragonfire'
3-
__requires__ = 'dragonfire==1.0.2'
2+
# EASY-INSTALL-ENTRY-SCRIPT: 'dragonfire==1.0.4','console_scripts','dragonfire'
3+
__requires__ = 'dragonfire==1.0.4'
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.2', 'console_scripts', 'dragonfire')()
11+
load_entry_point('dragonfire==1.0.4', 'console_scripts', 'dragonfire')()
1212
)

debian/postinst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ fi
2828
cd $DEEPCONV_DIR
2929
verified=$(find . -type f -exec md5sum {} \; | md5sum)
3030
if [ ! ${verified::-3} = "$CHECKSUM2" ]; then
31-
wget -nc -O - https://github.com/DragonComputer/Dragonfire/releases/download/v1.0.3/deepconv-v3.tar.gz | tar xvfz -
31+
wget -nc -O - https://github.com/DragonComputer/Dragonfire/releases/download/v1.0.4/deepconv-v3.tar.gz | tar xvfz -
3232
fi
3333

3434

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.2'
32+
version = '1.0.4'
3333
# The full version, including alpha/beta/rc tags
34-
release = '1.0.2'
34+
release = '1.0.4'
3535

3636

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

dragonfire/__init__.py

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

5454

55-
__version__ = '1.0.2'
55+
__version__ = '1.0.4'
5656

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

install-dev.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ fi
5151
cd $DEEPCONV_DIR
5252
verified=$(find . -type f -exec md5sum {} \; | md5sum)
5353
if [ ! ${verified::-3} = "$CHECKSUM2" ]; then
54-
wget -nc -O - https://github.com/DragonComputer/Dragonfire/releases/download/v1.0.3/deepconv-v3.tar.gz | tar xvfz -
54+
wget -nc -O - https://github.com/DragonComputer/Dragonfire/releases/download/v1.0.4/deepconv-v3.tar.gz | tar xvfz -
5555
fi
5656

5757
pip3 install --upgrade wikipedia==1.4.0 PyUserInput==0.1.11 tinydb==3.9.0.post1 youtube_dl spacy==2.1.3 pyowm==2.9.0 tensorflow==1.14.0 deepspeech==0.4.1 SpeechRecognition tweepy==3.7.0 metadata_parser==0.9.20 hug==2.4.0 hug-middleware-cors==1.0.0 waitress==1.1.0 requests==2.20.0 pyjwt==1.6.4 SQLAlchemy\>=1.3.0 PyMySQL==0.8.1 msgpack==0.5.6 neuralcoref==4.0 && \

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ fi
5151
cd $DEEPCONV_DIR
5252
verified=$(find . -type f -exec md5sum {} \; | md5sum)
5353
if [ ! ${verified::-3} = "$CHECKSUM2" ]; then
54-
wget -nc -O - https://github.com/DragonComputer/Dragonfire/releases/download/v1.0.3/deepconv-v3.tar.gz | tar xvfz -
54+
wget -nc -O - https://github.com/DragonComputer/Dragonfire/releases/download/v1.0.4/deepconv-v3.tar.gz | tar xvfz -
5555
fi
5656

5757
pip3 install --upgrade wikipedia==1.4.0 PyUserInput==0.1.11 tinydb==3.9.0.post1 youtube_dl spacy==2.1.3 pyowm==2.9.0 tensorflow==1.14.0 deepspeech==0.4.1 SpeechRecognition tweepy==3.7.0 metadata_parser==0.9.20 hug==2.4.0 hug-middleware-cors==1.0.0 waitress==1.1.0 requests==2.20.0 pyjwt==1.6.4 SQLAlchemy\>=1.3.0 PyMySQL==0.8.1 msgpack==0.5.6 neuralcoref==4.0 && \

0 commit comments

Comments
 (0)