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
8 changes: 8 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

All notable changes to ACE will be captured in this document. The project follows semantic versioning; the latest changes appear first.

## [v1.5.3] - 2026-01-15

### Changed
- Update copyrights to 2026

### Fixed
- UUID data type handling for table diff and repair fixed.

## [v1.5.2] - 2025-12-30

### Added
Expand Down
4 changes: 2 additions & 2 deletions docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Requires Go 1.20+ with CGO enabled (SQLite). Make sure build deps are present (`
go install github.com/pgedge/ace/cmd/ace@latest

# Specific version
go install github.com/pgedge/ace/cmd/ace@v1.4.2
go install github.com/pgedge/ace/cmd/ace@v1.5.3
```

The binary lands in `GOBIN` if set, otherwise `$GOPATH/bin` (defaults to `~/go/bin`). Add that to your `PATH`:
Expand All @@ -29,7 +29,7 @@ export PATH="$(go env GOBIN || go env GOPATH)/bin:$PATH"
Grab the prebuilt archive for your platform from GitHub Releases and unpack the `ace` binary:

```sh
ACE_VER=v1.4.2
ACE_VER=v1.5.3
OS=Linux # or Darwin or Windows
ARCH=x86_64 # or arm64

Expand Down
Loading