Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pre-commit to workflow, change the version number #168

Merged
merged 1 commit into from
Sep 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
author = "Aalto Electric Drives"

# The full version, including alpha/beta/rc tags
release = "0.4.0"
release = "0.5.0"

# -- General configuration ---------------------------------------------------

Expand Down
3 changes: 2 additions & 1 deletion docs/source/contributing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ When contributing code, please follow this workflow:
1. Create a new `issue <https://guides.github.com/features/issues/>`_ to discuss your proposal before starting.
2. Create your own fork and clone the repository to your local machine.
3. Commit and push your changes to your fork.
4. When your code is finished, create a pull request.
4. Run ``pre-commit run --all-files`` to ensure that your code is properly formatted.
5. When your code is finished, create a pull request.

Once a pull request has been created, it will be reviewed, and changes might be suggested, which you can make by simply adding new commits to your branch. After the successful review, we will merge your changes into the main repository.

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "motulator"
version = "0.4.0"
version = "0.5.0"
dependencies = [
"numpy",
"scipy",
Expand Down
Loading