dsu 3.0.0.beta.2 → 3.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 43029619f8b8d362726d531673f84ff9213f018a8094c589a0f30db7bda742f8
4
- data.tar.gz: d6f9dad5056babca3d80cc26bed568992e3374cd014f02dfee9355f3d90eb48e
3
+ metadata.gz: 30c74cb944a80caf60aa48873b29ccb51ae72036b3ad23ed8ed2ca19426837bc
4
+ data.tar.gz: 1bb2b22d1895eadb4e78019b6a02dc087d2cc01ae8b34c1ebbe10f5c2966b6f1
5
5
  SHA512:
6
- metadata.gz: 7cc5478542850e3bae57650d5dc0ce18da4e20ea7cd53b11df22d92146105bc9ec4a336bbb8ec76363a2eeb73222e5972343353be924a1497bf03f43f598228b
7
- data.tar.gz: 103ce7815607272a42d3a41a05ba5e811d506c21a5d9497f0c77a1b0086598df41ec1619282e02683f3583b09d888196655081130d197d6e0bedb839ef17e234
6
+ metadata.gz: f7ab8726be6364a3d06b673bf2f76f5c0b815105a90eaa168abb00a129d83b8627431965e756b3ada6570451ccccf6cbcaf36b82cf568557a03244b776dfffce
7
+ data.tar.gz: c455af559a5d18be7e4634be35e917038d566de135e7a9bcfca4c7408d6a9eb07c51e9c4e27d218dffeafc338b4f72bff52d25430efbed26eda0959fe56e93f3
data/CHANGELOG.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
- ## [3.0.0] - 2024-??-??
5
+ ## [3.0.0] - 2024-02-17
6
6
 
7
7
  ### Enhancements
8
8
  [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.
10
10
 
11
11
  ### Changes
12
12
  [x] Update ruby gems.
13
+ [x] Major updates to the migration process.
13
14
  [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.
14
15
  [x] Change `dsu export` file name for exports. When exporting all DSU entry groups for a project, the file name will be:
15
16
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dsu (3.0.0.beta.1)
4
+ dsu (3.0.0)
5
5
  activemodel (>= 7.0.8, < 8.0)
6
6
  activesupport (>= 7.0.8, < 8.0)
7
7
  colorize (>= 1.1, < 2.0)
data/lib/dsu/version.rb CHANGED
@@ -2,5 +2,5 @@
2
2
 
3
3
  module Dsu
4
4
  VERSION_REGEX = /\A\d+\.\d+\.\d+(\.(alpha|beta|rc)\.\d+)?\z/
5
- VERSION = '3.0.0.beta.2'
5
+ VERSION = '3.0.0'
6
6
  end
@@ -0,0 +1,5 @@
1
+ ---
2
+ editor: nano
3
+ entries_display_order: desc
4
+ entries_file_name: "%Y-%m-%d.json"
5
+ entries_folder: "./dsu/entries"
@@ -0,0 +1,8 @@
1
+ {
2
+ "version": 20230613121411,
3
+ "editor": "nano",
4
+ "entries_display_order": "desc",
5
+ "carry_over_entries_to_today": false,
6
+ "include_all": false,
7
+ "theme_name": "default"
8
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "version": 20240210161248,
3
+ "editor": "nano",
4
+ "entries_display_order": "desc",
5
+ "carry_over_entries_to_today": false,
6
+ "include_all": false,
7
+ "theme_name": "default",
8
+ "default_project": "default"
9
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dsu
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0.beta.2
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Gene M. Angelo, Jr.
@@ -299,6 +299,8 @@ files:
299
299
  - lib/locales/en/presenters.yml
300
300
  - lib/locales/en/services.yml
301
301
  - lib/locales/en/subcommands.yml
302
+ - lib/seed_data/0/.dsu
303
+ - lib/seed_data/20230613121411/.dsu
302
304
  - lib/seed_data/20230613121411/dsu/migration_version.json
303
305
  - lib/seed_data/20230613121411/dsu/themes/cherry.json
304
306
  - lib/seed_data/20230613121411/dsu/themes/christmas.json
@@ -307,6 +309,7 @@ files:
307
309
  - lib/seed_data/20230613121411/dsu/themes/light.json
308
310
  - lib/seed_data/20230613121411/dsu/themes/matrix.json
309
311
  - lib/seed_data/20230613121411/dsu/themes/whiteout.json
312
+ - lib/seed_data/20240210161248/.dsu
310
313
  - lib/seed_data/20240210161248/dsu/current_project.json
311
314
  - lib/seed_data/20240210161248/dsu/migration_version.json
312
315
  - lib/seed_data/20240210161248/dsu/projects/default/project.json
@@ -373,9 +376,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
373
376
  version: '4.0'
374
377
  required_rubygems_version: !ruby/object:Gem::Requirement
375
378
  requirements:
376
- - - ">"
379
+ - - ">="
377
380
  - !ruby/object:Gem::Version
378
- version: 1.3.1
381
+ version: '0'
379
382
  requirements: []
380
383
  rubygems_version: 3.2.15
381
384
  signing_key: