From 8b51582d018269a6a8074725451677a63ba681ac Mon Sep 17 00:00:00 2001 From: gangelo Date: Sat, 17 Feb 2024 14:41:52 -0500 Subject: [PATCH] Bump version to 3.0.0 and update ruby gems --- CHANGELOG.md | 3 ++- Gemfile.lock | 2 +- lib/dsu/version.rb | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e818fc13..ab7a35b5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -## [3.0.0] - 2024-??-?? +## [3.0.0] - 2024-02-17 ### Enhancements [x] Added `dsu project` command to manage DSU projects. See `dsu help project` or the [dsu wiki](https://github.com/gangelo/dsu/wiki) for more information. @@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file. ### Changes [x] Update ruby gems. +[x] Major updates to the migration process. [x] `dsu import` now has the --override true|false (default: false) OPTION. If true, the import process will ignore the project name found in the import file and import the entries into the current project. If false, the import process will use the project name found in the import file. [x] Change `dsu export` file name for exports. When exporting all DSU entry groups for a project, the file name will be: diff --git a/Gemfile.lock b/Gemfile.lock index 34afc729..97ea1d01 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - dsu (3.0.0.beta.1) + dsu (3.0.0) activemodel (>= 7.0.8, < 8.0) activesupport (>= 7.0.8, < 8.0) colorize (>= 1.1, < 2.0) diff --git a/lib/dsu/version.rb b/lib/dsu/version.rb index 7bddae6d..45194948 100644 --- a/lib/dsu/version.rb +++ b/lib/dsu/version.rb @@ -2,5 +2,5 @@ module Dsu VERSION_REGEX = /\A\d+\.\d+\.\d+(\.(alpha|beta|rc)\.\d+)?\z/ - VERSION = '3.0.0.beta.3' + VERSION = '3.0.0' end