From 35acbc88e28d7f4dbbcfbc3ff82ddd93053b4f13 Mon Sep 17 00:00:00 2001 From: Lance Ivy Date: Tue, 23 Mar 2021 13:55:21 -0700 Subject: [PATCH] v1.10.3 --- CHANGELOG.md | 6 ++++++ Makefile | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ba6fb9c254..60806b047f 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 5bad2dc38a..0beacc1fa5 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