Skip to content
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).

## [3.0.10] - 2026-09

### Changed — tooling
- `CLAUDE.md`: the working branch is now temporary — created from `main`
per task and deleted on origin after the squash-merge, so no side
branches linger between tasks.

## [3.0.9] - 2026-09

### Added — tooling
Expand Down
13 changes: 9 additions & 4 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,19 @@ pip install -e '.[full]' && pip install -r requirements-dev.txt

## Робочий процес

1. Гілка розробки: `claude/refactor-data-masking-lIcWN` (скидається на
`origin/main` перед новою задачею: `git reset --hard origin/main`).
1. Гілка розробки — тимчасова, одна на задачу, з фіксованим ім'ям
`claude/refactor-data-masking-lIcWN`: створюється від `origin/main`
(`git checkout -B claude/refactor-data-masking-lIcWN origin/main`), після
squash-мержу PR **видаляється на origin**
(`git push origin --delete claude/refactor-data-masking-lIcWN`), щоб у
репозиторії не висіли «побічні» гілки. Наступна задача створює її знову
від актуального `main`. На сервері між задачами має лишатись лише `main`.
2. Перед комітом: `python -m pytest tests/ -q -p no:cacheprovider`,
`python -m mypy datamasking/ --config-file mypy.ini` (має бути 0 помилок —
джоба blocking), `flake8 . --select=E9,F63,F7,F82`.
3. Push → PR у `main` → дочекатись **зеленого CI на всій матриці**
(Linux 3.9/3.11/3.13, Windows 3.12, core-only, package, mypy) → squash-merge.
Після мержу гілку синхронізувати з `main`.
(Linux 3.9/3.11/3.13, Windows 3.12, core-only, package, mypy) → squash-merge
видалити гілку на origin (п. 1).
4. Стежити за CI через GitHub API за **повним SHA** (`?head_sha=<40 hex>`);
скорочений SHA API ігнорує.
5. **Теги через проксі не пушаться** — релізи створює користувач вручну
Expand Down
2 changes: 1 addition & 1 deletion data_masking.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
# Re-exports from masking package for backward compatibility
# ============================================================================

__version__ = "3.0.9"
__version__ = "3.0.10"

from datamasking.masking.constants import (
__version__, __author__, __contact__, __phone__, __license__, __year__,
Expand Down
2 changes: 1 addition & 1 deletion datamasking/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
(і не тягнучи faker під час збірки).
"""

__version__ = "3.0.9"
__version__ = "3.0.10"
Loading