Skip to content

Commit

Permalink
Merge branch 'nightly' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
clinton-hall committed Jan 13, 2019
2 parents 247da9c + b5b4808 commit 243cf52
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 12.0.5
current_version = 12.0.6
commit = True
tag = False

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
nzbToMedia v12.0.5
nzbToMedia v12.0.6
==================

Provides an [efficient](https://github.com/clinton-hall/nzbToMedia/wiki/Efficient-on-demand-post-processing) way to handle postprocessing for [CouchPotatoServer](https://couchpota.to/ "CouchPotatoServer") and [SickBeard](http://sickbeard.com/ "SickBeard") (and its [forks](https://github.com/clinton-hall/nzbToMedia/wiki/Failed-Download-Handling-%28FDH%29#sick-beard-and-its-forks))
Expand Down
28 changes: 28 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
Change_LOG / History

V12.0.6

Hotfix for Manual Torrent run results.

V12.0.5

Proper fix for source cleaner

V12.0.4

Hotfix missed commit for source cleaner

V12.0.3

Hotfix cleaning for source installs

V12.0.2

Fix missed ProcessResult

V12.0.1

Added Python 3 support
Updated all dependencies
Major code refactoring
Various bug fixes
Hotfix NZBGet not working without comment

V12.0.0

NOTE:
Expand Down
5 changes: 2 additions & 3 deletions core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
resume_torrent, remove_dir, remove_read_only, sanitize_name, update_download_info_status,
)

__version__ = '12.0.5'
__version__ = '12.0.6'

# Client Agents
NZB_CLIENTS = ['sabnzbd', 'nzbget', 'manual']
Expand Down Expand Up @@ -101,7 +101,7 @@
FAILED = False

AUTO_UPDATE = None
NZBTOMEDIA_VERSION = None
NZBTOMEDIA_VERSION = __version__
NEWEST_VERSION = None
NEWEST_VERSION_STRING = None
VERSION_NOTIFY = None
Expand Down Expand Up @@ -328,7 +328,6 @@ def initialize(section=None):
main_db.upgrade_database(main_db.DBConnection(), databases.InitialSchema)

# Set Version and GIT variables
NZBTOMEDIA_VERSION = '11.06'
VERSION_NOTIFY = int(CFG['General']['version_notify'])
AUTO_UPDATE = int(CFG['General']['auto_update'])
GIT_REPO = 'nzbToMedia'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def read(*names, **kwargs):

setup(
name='nzbToMedia',
version='12.0.5',
version='12.0.6',
license='GPLv3',
description='Efficient on demand post processing',
long_description="""
Expand Down

0 comments on commit 243cf52

Please sign in to comment.