Skip to content

Commit c60d7c6

Browse files
author
Frances Hocutt
committed
Update to v0.4dev and update changelog
1 parent 2cd439a commit c60d7c6

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,11 @@ repository, file a pull request to get your contribution into the main
5858
repository.
5959

6060
##Changelog
61+
###version 0.4dev
62+
* Now installs Pygments automatically when installed with pip, with or
63+
without pulling versions from `requirements.txt`
64+
* Now includes `rules.yml` in the package and uses a correct default path
65+
to it
6166
###version 0.3dev
6267
* Improve documentation
6368
* Fix accidental return value change in file content checker

openlinter/openlinter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def parse_linter_args():
3232
parser.add_argument('-r', '--rules', help='The path to the rules configuration file, a YAML file containing the rules you would like to check for. Defaults to current-working-directory/openlinter/rules.yml.',
3333
default=os.path.join(get_current_script_dir(), 'rules.yml')
3434
)
35-
parser.add_argument('-v', '--version', action='version', version='0.3dev')
35+
parser.add_argument('-v', '--version', action='version', version='0.4dev')
3636
return parser.parse_args()
3737

3838

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
setup(
1818
name='open-project-linter',
19-
version='0.3dev',
19+
version='0.4dev',
2020
packages=find_packages(),
2121
package_data={
2222
'openlinter': ['*.yml'],

0 commit comments

Comments
 (0)