Skip to content

Commit

Permalink
Bump version: 0.0.0 → 0.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kuipumu committed Jan 31, 2023
1 parent ce0e1d8 commit 9e58b0b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion openedx_lti_tool_plugin/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Support for LTI tool launches and services."""

__version__ = '0.0.0'
__version__ = '0.0.1'
20 changes: 10 additions & 10 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.0
current_version = 0.0.1
commit = True
tag = True

Expand All @@ -14,7 +14,7 @@ django-settings-module = openedx_lti_tool_plugin.settings.test
max-line-length = 120

[pylint.MESSAGES CONTROL]
enable =
enable =
abstract-class-instantiated,
abstract-method,
access-member-before-definition,
Expand Down Expand Up @@ -186,7 +186,7 @@ enable =
wrong-spelling-in-comment,
wrong-spelling-in-docstring,
yield-outside-function,
disable =
disable =
bad-indentation,
consider-using-with,
duplicate-code,
Expand Down Expand Up @@ -232,14 +232,14 @@ skip = migrations

[tool:pytest]
DJANGO_SETTINGS_MODULE = openedx_lti_tool_plugin.settings.test
filterwarnings =
ignore::django.utils.deprecation.RemovedInDjango40Warning
ignore::django.utils.deprecation.RemovedInDjango41Warning
filterwarnings =
ignore::django.utils.deprecation.RemovedInDjango40Warning
ignore::django.utils.deprecation.RemovedInDjango41Warning

[coverage:run]
data_file = .coverage
source = openedx_lti_tool_plugin
omit =
*test_utils*
*settings*
*migrations*
omit =
*test_utils*
*settings*
*migrations*

0 comments on commit 9e58b0b

Please sign in to comment.