Skip to content

Commit

Permalink
Merge pull request #1509 from clinton-hall/hotfix/sourcecleaner
Browse files Browse the repository at this point in the history
Fix missed commit for source cleaner
  • Loading branch information
labrys committed Jan 6, 2019
2 parents 14300d1 + 84a7011 commit b9cab56
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 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.3
current_version = 12.0.4
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.3
nzbToMedia v12.0.4
==================

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
2 changes: 1 addition & 1 deletion 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.3'
__version__ = '12.0.4'

# Client Agents
NZB_CLIENTS = ['sabnzbd', 'nzbget', 'manual']
Expand Down
2 changes: 1 addition & 1 deletion core/version_check.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def check_for_new_version(self, force=False):
def update(self):
if self.updater.need_update():
result = self.updater.update()
cleanup.clean('core', 'libs')
cleanup.clean(cleanup.FOLDER_STRUCTURE)
return result


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.3',
version='12.0.4',
license='GPLv3',
description='Efficient on demand post processing',
long_description="""
Expand Down

0 comments on commit b9cab56

Please sign in to comment.