diff --git a/CHANGELOG.md b/CHANGELOG.md index ba6fb9c25..60806b047 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ Based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## HEAD +## 1.10.3 + +### Fixed + +* Usernames are now case insensitive on Postgres and SQLite. This requires a migration that can fail if the existing database has unintended duplicates! [#170] + ## 1.10.2 ### Fixed diff --git a/Makefile b/Makefile index 5bad2dc38..0beacc1fa 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ include .env ORG := keratin PROJECT := authn-server NAME := $(ORG)/$(PROJECT) -VERSION := TEST +VERSION := 1.10.3 MAIN := main.go .PHONY: clean