Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
44535d5
fix: remove unused imports
skola-ansys Oct 6, 2025
f2d3ac4
feat: add test feature for version increment
skola-ansys Oct 6, 2025
bc2ca88
chore: bump version from 0.12.dev0 to 1.0.0 (major)
skola-ansys Oct 6, 2025
77b4aff
fix: minor bug fix for testing version increment
skola-ansys Oct 6, 2025
1eea57b
feat: new feature for version increment test
skola-ansys Oct 6, 2025
cb7f228
fix: update pre-commit hook to use python instead of python3
skola-ansys Oct 6, 2025
487a250
fix: update script path in pre-commit hook
skola-ansys Oct 6, 2025
a45b7a9
fix: set UTF-8 encoding for version increment script
skola-ansys Oct 6, 2025
f876d41
feat: add test feature for version increment
skola-ansys Oct 6, 2025
42fcc97
fix: allow version increment in test branch
skola-ansys Oct 6, 2025
bd8bfa7
chore: bump version from 1.0.0 to 2.0.0 (major)
skola-ansys Oct 6, 2025
25f112a
feat: add another test feature
skola-ansys Oct 6, 2025
6bfae82
chore: bump version from 2.0.0 to 3.0.0 (major)
skola-ansys Oct 6, 2025
d61d677
test: reset version for increment testing
skola-ansys Oct 6, 2025
1d583b4
chore: bump version from 1.0.0 to 2.0.0 (major)
skola-ansys Oct 6, 2025
3180d53
fix: patch version test - error handling
skola-ansys Oct 6, 2025
5172dc8
chore: bump version from 2.0.0 to 3.0.0 (major)
skola-ansys Oct 6, 2025
1a1f3c4
feat: minor version test - new feature
skola-ansys Oct 6, 2025
da03d9d
chore: bump version from 3.0.0 to 4.0.0 (major)
skola-ansys Oct 6, 2025
600f94d
BREAKING CHANGE: major version test - remove deprecated APIs
skola-ansys Oct 6, 2025
b76d8cb
chore: bump version from 4.0.0 to 5.0.0 (major)
skola-ansys Oct 6, 2025
a5f9184
fix: error handling in connection manager
skola-ansys Oct 6, 2025
1595362
feat: new API for advanced data analysis
skola-ansys Oct 6, 2025
0425cb9
BREAKING CHANGE: remove deprecated auth methods
skola-ansys Oct 6, 2025
d760b7b
chore: bump version from 5.0.0 to 6.0.0 (major)
skola-ansys Oct 6, 2025
87c8c39
chore: update pre-commit hooks and remove obsolete changelog entries
skola-ansys Oct 6, 2025
e35ec3b
chore: bump version from 0.12.dev0 to 1.0.0 (major)
skola-ansys Oct 6, 2025
a6a982d
Update pyproject.toml
skola-ansys Oct 6, 2025
a772514
chore: adding changelog file 658.miscellaneous.md [dependabot-skip]
pyansys-ci-bot Oct 7, 2025
919da7b
chore: adding changelog file 658.miscellaneous.md [dependabot-skip]
pyansys-ci-bot Oct 14, 2025
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
13 changes: 13 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,22 @@ repos:
hooks:
- id: check-github-workflows

# Ansys pre-commit hooks for license headers and version management
- repo: https://github.com/ansys/pre-commit-hooks
rev: v0.5.2
hooks:
- id: add-license-headers
args:
- --start_year=2021

# Automatic version increment on pre-push
- repo: local
hooks:
- id: auto-version-increment
name: Auto Version Increment
entry: cmd /c "chcp 65001 > NUL && python .script/pre_push_version_increment.py"
language: system
stages: [pre-push]
always_run: true
pass_filenames: false
description: "Automatically increment version based on changes"
Loading
Loading