From 535550a93591c99d02dfecf5148866d25c3b43e8 Mon Sep 17 00:00:00 2001 From: Jim Gay Date: Fri, 25 Oct 2024 15:44:30 -0400 Subject: [PATCH] Bump version to 0.1.2 --- CHANGELOG.md | 8 ++------ Gemfile.lock | 2 +- checksums/activerecord-null-0.1.1.gem.sha512 | 1 + lib/activerecord/null/version.rb | 2 +- 4 files changed, 5 insertions(+), 8 deletions(-) create mode 100644 checksums/activerecord-null-0.1.1.gem.sha512 diff --git a/CHANGELOG.md b/CHANGELOG.md index 2207aba..2d5ba76 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.1.2] - Unreleased + ## [0.1.1] - 2024-10-25 ### Added @@ -12,9 +14,3 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `null?` method to both parent class objects and null objects - Null objects now have default nil values for attributes of the mimic model class - `Null()` method can now accept a hash of attribute names and values to assign to the null object - -## [0.1.0] - 2024-10-23 - -### Added - -- Initial release diff --git a/Gemfile.lock b/Gemfile.lock index 82ff0f6..c0da9d0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - activerecord-null (0.1.1) + activerecord-null (0.1.2) activerecord (>= 7.0) GEM diff --git a/checksums/activerecord-null-0.1.1.gem.sha512 b/checksums/activerecord-null-0.1.1.gem.sha512 new file mode 100644 index 0000000..d6d3281 --- /dev/null +++ b/checksums/activerecord-null-0.1.1.gem.sha512 @@ -0,0 +1 @@ +0fc0a2cc201390db58bc2e1ac192c36b9d30543bdd92615e825bee6528eaccf1c4ef3de7d10219fa626dbb98c3157b890d2d0121fa8df43b07c0ccc3374ab6d1 diff --git a/lib/activerecord/null/version.rb b/lib/activerecord/null/version.rb index f0d5568..1352c79 100644 --- a/lib/activerecord/null/version.rb +++ b/lib/activerecord/null/version.rb @@ -2,6 +2,6 @@ module ActiveRecord module Null - VERSION = "0.1.1" + VERSION = "0.1.2" end end