M CHANGELOG.md => CHANGELOG.md +31 -0
@@ 3,6 3,37 @@
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.4.0](https://git.code.netlandish.com/~netlandish/links/refs/0.4.0) - 2025-05-03
+
+### Added
+
+- Tag clouds to recent, popular, feed, and organization bookmark pages.
+- Save count is displayed on all relevant listing pages.
+- New page to view all users/orgs who bookmarked a specific link.
+- Some missing Spanish translations.
+- SECURITY.md to help ensure that security vulnerabilities are reported
+ responsibly.
+- Pagination ordering on bookmark listing pages.
+
+### Fixed
+
+- Disaply error in qr code detail template
+
+### Changed
+
+- getPopularLinks return type is now different. Had to be changed to include
+ the tag cloud. See updated schema.graphqls
+- Only display associated tags with displayed links on organization pages when
+ filtering is applied.
+
+### Closed Tickets
+
+- [#105: go: OrgLink.BaseURLID is a sql.NullInt64 field - it shouldn't be](https://todo.code.netlandish.com/~netlandish/links/105)
+- [#106: Handler to list what users/orgs saved the same bookmark](https://todo.code.netlandish.com/~netlandish/links/106)
+- [#109: Internal API calls are not passing the proper end user IP address](https://todo.code.netlandish.com/~netlandish/links/109)
+- [#90: Order link feed by date added](https://todo.code.netlandish.com/~netlandish/links/90)
+- [#95: Add tag cloud pages for organizations](https://todo.code.netlandish.com/~netlandish/links/95)
+
## [0.3.0](https://git.code.netlandish.com/~netlandish/links/refs/0.3.0) - 2025-04-03
### Added
M Makefile => Makefile +1 -1
@@ 1,4 1,4 @@
-VERSION?=$(shell git describe --long --abbrev=12 --tags --dirty 2>/dev/null || echo 0.3.0)
+VERSION?=$(shell git describe --long --abbrev=12 --tags --dirty 2>/dev/null || echo 0.4.0)
GO?=go
GOFLAGS?=
LDFLAGS+=-X main.Version=$(VERSION)