M CHANGELOG.md => CHANGELOG.md +27 -0
@@ 3,6 3,33 @@
All notable changes to links will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
+## [0.2.0](https://git.code.netlandish.com/~netlandish/links/refs/0.2.0) - 2025-03-07
+
+### Added
+
+- additional import sanity checking to avoid db layer errors (ie, max length
+ exceeded).
+- GraphQL calls for audit logs
+- 40ish missing Spanish translations. The app should now once again be fully
+ translated to Spanish.
+
+### Changed
+
+- Pinboard import now uses streaming json decoding to avoid loading large files
+ completely into memory.
+- No longer allowing duplicate bookmarks to be saved under the same
+ organization.
+- GraphQL api version: minor version bump
+- Failed metadata collection on base url's will be attempted a max of 3 times
+ in 1 day intervals.
+- require login to view recent, popular, or public bookmark pages while
+ filtering by more than 2 tags.
+
+### Closed Tickets
+
+- [#96: Import: pq: invalid byte sequence for encoding "UTF8": 0xe2 0x80 0x2e](https://todo.code.netlandish.com/~netlandish/links/96)
+- [#97: Import: large json files are failing during processing](https://todo.code.netlandish.com/~netlandish/links/97)
+
## [0.1.4](https://git.code.netlandish.com/~netlandish/links/refs/0.1.4) - 2025-02-15
### Closed Tickets
M Makefile => Makefile +1 -1
@@ 1,4 1,4 @@
-VERSION?=$(shell git describe --long --abbrev=12 --tags --dirty 2>/dev/null || echo 0.1.4)
+VERSION?=$(shell git describe --long --abbrev=12 --tags --dirty 2>/dev/null || echo 0.2.0)
GO?=go
GOFLAGS?=
LDFLAGS+=-X main.Version=$(VERSION)