Skip to content

Commit 431894d

Browse files
committed
Bump version to 0.3.0-beta
1 parent 404e736 commit 431894d

4 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
# All notable changes to this project will be documented in this file.
33
# This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [0.3.0-beta] 2019-11-05
6+
- New support for files and folders using different naming template
7+
- New support for multiple copies of a film in the same parent folder
8+
- Improved duplicate checking and stability for duplicate removal
9+
- Empty duplicate folders are cleaned up
10+
- Adjustments to improve accuracy of matching heuristic
11+
512
## [0.2.7-beta] 2019-07-07
613
- Fix Plex not updating on completion
714
- Fix progress bar not formatting correctly

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![version](https://img.shields.io/badge/version-0.2.7--beta-green.svg) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/8fcfaf45a6494aedb4b0340461c2b79b)](https://www.codacy.com/app/brandonscript/fylm) [![Build Status](https://travis-ci.org/brandonscript/fylm.svg?branch=master)](https://travis-ci.org/brandonscript/fylm)
1+
![version](https://img.shields.io/badge/version-0.3.0--beta-green.svg) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/8fcfaf45a6494aedb4b0340461c2b79b)](https://www.codacy.com/app/brandonscript/fylm) [![Build Status](https://travis-ci.org/brandonscript/fylm.svg?branch=master)](https://travis-ci.org/brandonscript/fylm)
22

33
<img src="https://i.imgur.com/X53grFH.png" width="200">
44

fylm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
import fylmlib.notify as notify
3636
import fylmlib.counter as counter
3737

38-
__version__ = '0.2.7-beta'
38+
__version__ = '0.3.0-beta'
3939

4040
def main():
4141
"""Main program."""

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
setup(
4242
name='Fylm',
4343

44-
version='0.2.7-beta',
44+
version='0.3.0-beta',
4545

4646
description='A automated command line app for organizing your film media.',
4747
long_description=long_description,
@@ -75,7 +75,7 @@
7575
'License :: OSI Approved :: Apache Software License',
7676

7777
# Supported Python versions.
78-
'Programming Language :: Python :: 3.6',
78+
'Programming Language :: Python :: 3.7',
7979
],
8080

8181
# List of runtime dependencies. These will be installed by pip when

0 commit comments

Comments
 (0)