Skip to content

Commit cc53347

Browse files
author
Frances Hocutt
committed
Increment version number and update README for bugfix
1 parent 51fe41f commit cc53347

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,10 @@ repository, file a pull request to get your contribution into the main
5757
repository.
5858

5959
##Changelog
60+
###version 1.0.1
61+
* Fix the error in checking for multiple commits where it was using the reflog
62+
not the commit history ([#30](https://github.com/OpenNewsLabs/open-project-linter/issues/30))
63+
6064
###version 1.0
6165
* Update `ROADMAP.md` with pre-NICAR status
6266
* Fix the KeyError issue when default config was changed ([#27](https://github.com/OpenNewsLabs/open-project-linter/issues/27))

openlinter/openlinter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ def parse_linter_args():
140140
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 path/to/openlinter/rules.yml.',
141141
default=os.path.join(get_current_script_dir(), 'rules.yml')
142142
)
143-
parser.add_argument('-v', '--version', action='version', version='1.0')
143+
parser.add_argument('-v', '--version', action='version', version='1.0.1')
144144
return parser.parse_args()
145145

146146

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='1.0',
19+
version='1.0.1',
2020
packages=find_packages(),
2121
package_data={
2222
'openlinter': ['*.yml'],

0 commit comments

Comments
 (0)