<feed xmlns='http://www.w3.org/2005/Atom'>
<title>VersionControl.git/.github/workflows, branch dev</title>
<subtitle>JustEnoughVCS Core Library
</subtitle>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/JustEnoughVCS/VersionControl.git/'/>
<entry>
<title>Remove GitHub Actions workflow for Rust CI</title>
<updated>2026-01-11T21:05:01+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2026-01-11T21:05:01+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/JustEnoughVCS/VersionControl.git/commit/?id=dd8cbe7e863b3fec594696c15c5e009f172749f5'/>
<id>dd8cbe7e863b3fec594696c15c5e009f172749f5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update workflow trigger to release branch</title>
<updated>2025-09-25T08:22:57+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2025-09-25T08:22:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/JustEnoughVCS/VersionControl.git/commit/?id=647cc441eece20218d7387f37d94042e88042057'/>
<id>647cc441eece20218d7387f37d94042e88042057</id>
<content type='text'>
- Change push and pull_request triggers from main branch to release branch
- This ensures CI/CD only runs on release branch for production builds
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Change push and pull_request triggers from main branch to release branch
- This ensures CI/CD only runs on release branch for production builds
</pre>
</div>
</content>
</entry>
<entry>
<title>Update GitHub Actions to latest versions</title>
<updated>2025-09-25T08:15:43+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2025-09-25T08:15:43+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/JustEnoughVCS/VersionControl.git/commit/?id=8b1863fc35584b7d55f52c2e5a915bed5e0ae291'/>
<id>8b1863fc35584b7d55f52c2e5a915bed5e0ae291</id>
<content type='text'>
- Update upload-artifact from v3 to v4
- Update cache action from v3 to v4
- Keep actions/checkout@v4 (already up to date)
- Ensure all actions use latest stable versions
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Update upload-artifact from v3 to v4
- Update cache action from v3 to v4
- Keep actions/checkout@v4 (already up to date)
- Ensure all actions use latest stable versions
</pre>
</div>
</content>
</entry>
<entry>
<title>Install musl development tools for GCC compatibility</title>
<updated>2025-09-25T08:01:25+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2025-09-25T08:01:25+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/JustEnoughVCS/VersionControl.git/commit/?id=e22bed0c8f6b052fd3b39cb20cc3aea9b0f72dc8'/>
<id>e22bed0c8f6b052fd3b39cb20cc3aea9b0f72dc8</id>
<content type='text'>
- Add musl-tools installation in setup job
- Update test job to install both musl target and musl-tools
- Fixes 'x86_64-linux-musl-gcc not found' error during compilation
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Add musl-tools installation in setup job
- Update test job to install both musl target and musl-tools
- Fixes 'x86_64-linux-musl-gcc not found' error during compilation
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove cargo fmt check from workflow</title>
<updated>2025-09-25T07:58:28+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2025-09-25T07:58:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/JustEnoughVCS/VersionControl.git/commit/?id=fe5c34f2d215b48be4bd71b8a0a0207713f76d51'/>
<id>fe5c34f2d215b48be4bd71b8a0a0207713f76d51</id>
<content type='text'>
- Remove the 'Check formatting' step that runs 'cargo fmt --check'
- Keep clippy checks for code quality but remove formatting enforcement
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Remove the 'Check formatting' step that runs 'cargo fmt --check'
- Keep clippy checks for code quality but remove formatting enforcement
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix musl target installation in test job</title>
<updated>2025-09-25T07:54:56+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2025-09-25T07:54:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/JustEnoughVCS/VersionControl.git/commit/?id=3b9f34c380b020c3ac0fc46f4dda5c0581899786'/>
<id>3b9f34c380b020c3ac0fc46f4dda5c0581899786</id>
<content type='text'>
- Replace 'Verify musl target is installed' with 'Install musl target' in test job
- This ensures musl target is properly installed before building and testing
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Replace 'Verify musl target is installed' with 'Install musl target' in test job
- This ensures musl target is properly installed before building and testing
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix clippy warnings in test files</title>
<updated>2025-09-25T07:49:28+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2025-09-25T07:49:28+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/JustEnoughVCS/VersionControl.git/commit/?id=0eeb842c21ff1681e77ccbd47fe7a3c9779a65d5'/>
<id>0eeb842c21ff1681e77ccbd47fe7a3c9779a65d5</id>
<content type='text'>
- Convert manual async functions to async fn syntax
- Replace assert_eq!(true/false, ...) with assert!(...) and assert!(!...)
- Fix useless vec warning by using array directly
- All tests continue to pass after optimizations
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Convert manual async functions to async fn syntax
- Replace assert_eq!(true/false, ...) with assert!(...) and assert!(!...)
- Fix useless vec warning by using array directly
- All tests continue to pass after optimizations
</pre>
</div>
</content>
</entry>
<entry>
<title>Update rust.yml</title>
<updated>2025-09-25T07:33:24+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2025-09-25T07:33:24+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/JustEnoughVCS/VersionControl.git/commit/?id=17233e0c83c1b25a32c641eb32eb1fba3061cdfd'/>
<id>17233e0c83c1b25a32c641eb32eb1fba3061cdfd</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Create rust.yml</title>
<updated>2025-09-25T07:31:29+00:00</updated>
<author>
<name>魏曹先生</name>
<email>1992414357@qq.com</email>
</author>
<published>2025-09-25T07:31:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.catilgrass.cn/JustEnoughVCS/VersionControl.git/commit/?id=e388c0ff45c4caf4ccf56142a4e41d0b4fb61b80'/>
<id>e388c0ff45c4caf4ccf56142a4e41d0b4fb61b80</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
