Skip to content

Commit a58e2b6

Browse files
committed
chore(release): 0.1.0
- Bump version to 0.1.0 - Update manifest version to 0.1.0 - Add CHANGELOG.md with full history for 0.1.0
1 parent 00db92e commit a58e2b6

File tree

3 files changed

+60
-5
lines changed

3 files changed

+60
-5
lines changed

CHANGELOG.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# Changelog
2+
3+
All notable changes to this project are documented here. This project follows Conventional Commits for commit messages.
4+
5+
## [0.1.0] - 2025-10-02
6+
7+
Initial public preview release with a full cross‑platform build, extensive tests, and libgit2‑based operations.
8+
9+
Highlights
10+
- Fast, safe repository scanning with opt‑in recursion and ignore support
11+
- libgit2‑backed pull/clone/fetch with timeouts and resource limits
12+
- Deterministic CLI with structured logging, rotation, and optional JSON
13+
- Windows/macOS/Linux support, with CI matrix and tests
14+
15+
Features
16+
- feat(pull): allow targeting refs via CLI and per‑repo overrides (88e6bb8)
17+
18+
Performance
19+
- perf(ignore): fast‑path non‑glob patterns for ignore matching (00db92e)
20+
21+
Fixes
22+
- fix(build/windows): ensure bundled zlib usage for libgit2; eliminate stale AdditionalDependencies (1be7d5e, e3d6c23, c0d0d58, 05a2460, 77e8d07, 243c112, 6dafb31, 838f366, 94d6d9f)
23+
- fix(build): guard/avoid duplicate zlib targets; enforce build order (3976cd4, d18ef8a, 30dacaf, c7d0515, 302ea19, add2a6f)
24+
- fix(macos): avoid system pip; fix zlib multi‑arch linking and Security framework usage (7c2adb3, 147fc07, cab6d51)
25+
- fix(ci): Windows and recent‑release scripting portability; coverage reporting improvements (540b083, 2113b9c)
26+
- fix(scripts): install script missing array initialization (9ad6c42)
27+
28+
CI
29+
- ci(windows/arm64): add Windows ARM64 builds and runners (10f9a63, 972ce58)
30+
- ci(test): add Linux arm64 and macOS arm64 jobs; stabilize timing (0444e25, 7dde7d2)
31+
- ci(rolling): badges, compact invocation, portable date handling (f67a3ff, 81c9b9b, 1561e4b, faf8e15)
32+
- ci: normalize matrix order and keep windows‑11‑arm entries (85f3da8)
33+
34+
Build
35+
- build(ubuntu): prefer PIC zlib and guard ZLIB linkage paths (f6d8c78, 33c7b9e, 104bd19, 5ef6d81, 6e03d69)
36+
- build: CMake improvements around bundled zlib and dependency probing (c0d0d58, 302ea19, 1ae5137)
37+
38+
Tests
39+
- test: deflake local clone/syslog checks; discover Catch cases individually (f9843ff, 05c0936)
40+
- test(macos): stabilize instance detection suite (00c3c9b)
41+
- test(resource): stabilize rate limit timing (7dde7d2)
42+
43+
Docs
44+
- docs: add rolling‑release CI badge to README (f67a3ff)
45+
- readme/gitignore updates (e168978)
46+
47+
Chore/Formatting
48+
- chore(format): auto‑apply clang‑format (da709ed, 1ae5137)
49+
50+
Notes
51+
- Version embedded via `include/version.hpp` and surfaced by `--version`.
52+
- Builds are produced via CMake presets across Windows/macOS/Linux.
53+
54+
[0.1.0]: https://example.com/autogitpull/releases/0.1.0
55+

include/version.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33

44
/* ------------------------------------------------------------------
55
Public numeric version macros (safe for .rc files) */
6-
#define AUTOGITPULL_VERSION_MAJOR 0
7-
#define AUTOGITPULL_VERSION_MINOR 0
8-
#define AUTOGITPULL_VERSION_PATCH 0
6+
#define AUTOGITPULL_VERSION_MAJOR 0
7+
#define AUTOGITPULL_VERSION_MINOR 1
8+
#define AUTOGITPULL_VERSION_PATCH 0
99

1010
/*
1111
* Rolling release tag injected by the CI workflow.
1212
* Example format: "2025.07.31-1".
1313
*/
14-
#define AUTOGITPULL_VERSION_STR "rolling"
14+
#define AUTOGITPULL_VERSION_STR "0.1.0"
1515
#define AUTOGITPULL_VERSION_RC \
1616
AUTOGITPULL_VERSION_MAJOR, AUTOGITPULL_VERSION_MINOR, AUTOGITPULL_VERSION_PATCH, 0
1717
/* ------------------------------------------------------------------ */

manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
: 1
22
name: autogitpull
3-
version: rolling
3+
version: 0.1.0
44
summary: Automatic Git Puller & Monitor
55
depends: libgit2
66
depends: yaml-cpp

0 commit comments

Comments
 (0)