-
-
Notifications
You must be signed in to change notification settings - Fork 211
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
35dcef7
commit 4d1aab6
Showing
7 changed files
with
26 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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')() | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters