diff --git a/CHANGELOG.md b/CHANGELOG.md index f172aa4..32382fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.20.0] - 2025-07-07 + +### Changed +- **BREAKING**: Repository moved from `arunavo4/gitea-mirror` to `RayLabsHQ/gitea-mirror` +- Docker images now hosted at `ghcr.io/raylabshq/gitea-mirror` +- Updated all repository references and links to new organization +- License changed from MIT to GNU General Public License v3.0 + +### Fixed +- Updated GitHub API endpoint for version checking to use new repository location +- Corrected all documentation references to point to RayLabsHQ organization + +### Security +- Removed test security script after confirming vulnerability resolution +- Updated base Docker image to version 1.2.18-alpine + +### Documentation +- Added repository migration notice in README +- Updated quickstart guide with new repository URLs +- Updated LXC deployment documentation with new repository location + ## [2.18.0] - 2025-06-24 ### Added diff --git a/README.md b/README.md index 956a0cb..8eceecf 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,16 @@

+> [!IMPORTANT] +> **Repository Migration Notice**: Starting from version 2.20, this project has moved from `arunavo4/gitea-mirror` to `RayLabsHQ/gitea-mirror`. Please update your Docker images and Git remotes to use the new location: +> ```bash +> # Docker +> docker pull ghcr.io/raylabshq/gitea-mirror:latest +> +> # Git remote +> git remote set-url origin https://github.com/RayLabsHQ/gitea-mirror.git +> ``` + ## 🚀 Quick Start ```bash diff --git a/package.json b/package.json index 324b0e0..671d25d 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "gitea-mirror", "type": "module", - "version": "2.18.0", + "version": "2.20.0", "engines": { "bun": ">=1.2.9" },