diff --git a/CHANGELOG.md b/CHANGELOG.md index 23412ae1..e818fc13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ All notable changes to this project will be documented in this file. ### Changes [x] Update ruby gems. +[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: "dsu-export---all-entry-groups--thru-.csv" diff --git a/Gemfile.lock b/Gemfile.lock index 6c3f7840..b9969848 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - dsu (3.0.0.alpha.13) + dsu (3.0.0.beta.0) activemodel (>= 7.0.8, < 8.0) activesupport (>= 7.0.8, < 8.0) colorize (>= 1.1, < 2.0) diff --git a/dsu.gemspec b/dsu.gemspec index 7f5c805e..b4024ba6 100644 --- a/dsu.gemspec +++ b/dsu.gemspec @@ -77,5 +77,7 @@ Gem::Specification.new do |spec| Thank you! <3 Gene + + dsu now uses "Projects"! Run `dsu help project` to get started. POST_INSTALL end diff --git a/lib/dsu/models/project.rb b/lib/dsu/models/project.rb index dda22f80..ec2629ae 100644 --- a/lib/dsu/models/project.rb +++ b/lib/dsu/models/project.rb @@ -25,9 +25,9 @@ class Project VERSION = Migration::VERSION MIN_PROJECT_NAME_LENGTH = 2 - MAX_PROJECT_NAME_LENGTH = 24 + MAX_PROJECT_NAME_LENGTH = 32 MIN_DESCRIPTION_LENGTH = 2 - MAX_DESCRIPTION_LENGTH = 32 + MAX_DESCRIPTION_LENGTH = 64 attr_reader :project_name, :current_project_file, :description, :version, :options diff --git a/lib/dsu/version.rb b/lib/dsu/version.rb index c34981ea..f832eabd 100644 --- a/lib/dsu/version.rb +++ b/lib/dsu/version.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true module Dsu - VERSION_REGEX = /\A\d+\.\d+\.\d+(\.(alpha|rc)\.\d+)?\z/ - VERSION = '3.0.0.alpha.13' + VERSION_REGEX = /\A\d+\.\d+\.\d+(\.(alpha|beta|rc)\.\d+)?\z/ + VERSION = '3.0.0.beta.0' end