From 0233e77397360056f934b7c3071ca8ec291ddd77 Mon Sep 17 00:00:00 2001 From: Trey Pendragon Date: Mon, 18 Oct 2021 13:31:53 -0700 Subject: [PATCH] Release 3.0.0.beta1 --- CHANGELOG.md | 26 ++++++++++++++++++++++++++ lib/valkyrie/version.rb | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c8220d08..06d58059 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,29 @@ +# v3.0.0.beta1 2021-10-18 + +## Changes since last release + +* More informative NoMethodError for missing custom queries. + [no-reply](https://github.com/no-reply) +* Persisters error if you save something which existed at query time, but has + since been deleted. +* Shared write-only persisters. +* Solr ModelConverter performance. +* Don't hold open a file handle from StorageAdapter#upload/find_by +* Files can be #close'd. +* Remove Draper +* Remove deprecated string equality function. +* Remove deprecated BlacklistedValue. +* Allow reform upgrade to 2.6. +* Don't require a specific error message in shared specs + [tpendragon](https://github.com/tpendragon) + +Additional thanks to the following for code review and issue reports leading to +this release: + +[hackartisan](https://github.com/hackartisan) +[eliotjordan](https://github.com/eliotjordan) + + # v2.2.0 2021-05-06 ## Changes since last release diff --git a/lib/valkyrie/version.rb b/lib/valkyrie/version.rb index dea885bf..042cb944 100644 --- a/lib/valkyrie/version.rb +++ b/lib/valkyrie/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Valkyrie - VERSION = "2.2.0" + VERSION = "3.0.0.beta1" end