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
9037beb
fix: remove unused imports
skola-ansys Oct 6, 2025
0d2bf31
feat: add test feature for version increment
skola-ansys Oct 6, 2025
e31c2d8
chore: bump version from 0.12.dev0 to 1.0.0 (major)
skola-ansys Oct 6, 2025
245844d
fix: minor bug fix for testing version increment
skola-ansys Oct 6, 2025
f38dcf1
feat: new feature for version increment test
skola-ansys Oct 6, 2025
0d9e3e6
fix: update pre-commit hook to use python instead of python3
skola-ansys Oct 6, 2025
9e734a2
fix: update script path in pre-commit hook
skola-ansys Oct 6, 2025
d49d5fd
fix: set UTF-8 encoding for version increment script
skola-ansys Oct 6, 2025
b52ba14
feat: add test feature for version increment
skola-ansys Oct 6, 2025
ceafb6e
fix: allow version increment in test branch
skola-ansys Oct 6, 2025
1a4ce33
chore: bump version from 1.0.0 to 2.0.0 (major)
skola-ansys Oct 6, 2025
ef1c713
feat: add another test feature
skola-ansys Oct 6, 2025
7b659df
chore: bump version from 2.0.0 to 3.0.0 (major)
skola-ansys Oct 6, 2025
dc4bea6
test: reset version for increment testing
skola-ansys Oct 6, 2025
bcc3d49
chore: bump version from 1.0.0 to 2.0.0 (major)
skola-ansys Oct 6, 2025
ea9cd71
fix: patch version test - error handling
skola-ansys Oct 6, 2025
cf0bbde
chore: bump version from 2.0.0 to 3.0.0 (major)
skola-ansys Oct 6, 2025
762efc2
feat: minor version test - new feature
skola-ansys Oct 6, 2025
3a3700a
chore: bump version from 3.0.0 to 4.0.0 (major)
skola-ansys Oct 6, 2025
16817da
BREAKING CHANGE: major version test - remove deprecated APIs
skola-ansys Oct 6, 2025
030f171
chore: bump version from 4.0.0 to 5.0.0 (major)
skola-ansys Oct 6, 2025
c763e1f
fix: error handling in connection manager
skola-ansys Oct 6, 2025
1b3c631
feat: new API for advanced data analysis
skola-ansys Oct 6, 2025
bf4d133
BREAKING CHANGE: remove deprecated auth methods
skola-ansys Oct 6, 2025
1b8b6c6
chore: bump version from 5.0.0 to 6.0.0 (major)
skola-ansys Oct 6, 2025
bd38b20
chore: update pre-commit hooks and remove obsolete changelog entries
skola-ansys Oct 6, 2025
d43074a
chore: bump version from 0.12.dev0 to 1.0.0 (major)
skola-ansys Oct 6, 2025
025c215
Update pyproject.toml
skola-ansys Oct 6, 2025
1ada568
chore: adding changelog file 658.miscellaneous.md [dependabot-skip]
pyansys-ci-bot Oct 7, 2025
241cf75
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