Skip to content

Commit cc8aa31

Browse files
author
Frances Hocutt
committed
Update version number for packaging and release
* Add new changelog entry to README.md * Update the version number to 0.2dev in the openlinter command-line --version option help text and in setup.py
1 parent 969917d commit cc8aa31

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
@@ -44,6 +44,10 @@ repository, file a pull request to get your contribution into the main
4444
repository.
4545

4646
##Changelog
47+
###version 0.2dev
48+
* Add automated tests
49+
* Fix path bug in file content checker
50+
4751
###version 0.1dev
4852
* Command-line application invokable with `openlinter`, with help on
4953
how to run it

openlinter/openlinter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def main():
2828
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.',
2929
default=os.path.join(os.getcwd(), 'openlinter/rules.yml')
3030
)
31-
parser.add_argument('-v', '--version', action='version', version='0.1dev')
31+
parser.add_argument('-v', '--version', action='version', version='0.2dev')
3232
args = parser.parse_args()
3333

3434
# Read in rules

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.1dev',
19+
version='0.2dev',
2020
packages=find_packages(),
2121
install_requires=['gitpython', 'pyyaml'],
2222
license='Apache v2.0',

0 commit comments

Comments
 (0)