csvops 0.9.0.alpha → 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 940c2492f5bea33d56ad0a47ebf6933cb2e43817530aa04d4e02950affe9d493
4
- data.tar.gz: 9c32a162b4393f25e99b55e908df2b9dcb55099ce0d820aa3255c310fc09d983
3
+ metadata.gz: f6fccbf57eba6e28cb683942ed1e9f48505d1e404862a53e79e0c5f49a9fa5df
4
+ data.tar.gz: 617867abe207ee707d465e7207008cb9aaf4510b4647d5840a3e1bba68d34b2a
5
5
  SHA512:
6
- metadata.gz: 3babceb657e3e3c366c19daa305fcffe18fca1e145dafa8d8f66f022531e17fc21f0788da7b27a0d76e17e07c88fa098105d20116353cced5e4b207870a0f88e
7
- data.tar.gz: a8efe4b0a86dd3e303ca8946a0b25b3dbcffb1bbeb76823910d43ab8ff1ba4fc7670f1a2c16e135941caf74a3a216f988010bd0178b892a60eb9bd82963c4596
6
+ metadata.gz: aa7000e41dae36cd3f02b67c8a287f4bf76ab951042d8ca08019578e8c392799405829ddef7f188c57e8932e198b4f84c4f3beeded1f0767ebc5d994c39d0943
7
+ data.tar.gz: 186984f5b04173c922737bd7cc3cf099528f274d40709d98b771eb645968e0c5b5010376b41ac0e0cafb69e8df395e81d23dc7ac8a2729e2df888763bd124c0a
data/README.md CHANGED
@@ -320,19 +320,19 @@ Or:
320
320
  bundle exec rake test
321
321
  ```
322
322
 
323
- ## Alpha release
323
+ ## Release
324
324
 
325
- Current prerelease version: `0.9.0.alpha`
325
+ Current version: `1.0.0`
326
326
 
327
- Install prerelease from RubyGems:
327
+ Install from RubyGems:
328
328
 
329
329
  ```bash
330
- gem install csvops --pre
330
+ gem install csvops
331
331
  ```
332
332
 
333
333
  Release runbook:
334
334
 
335
- - `docs/release-v0.9.0-alpha.md`
335
+ - `docs/release-v1.0.0.md`
336
336
 
337
337
 
338
338
  ## Architecture
@@ -0,0 +1,80 @@
1
+ # Release Checklist: v1.0.0
2
+
3
+ ## 1. Verify environment
4
+
5
+ ```bash
6
+ ruby -v
7
+ bundle -v
8
+ ```
9
+
10
+ Expected:
11
+ - Ruby `3.3.x`
12
+
13
+ ## 2. Install dependencies
14
+
15
+ ```bash
16
+ bundle install
17
+ ```
18
+
19
+ ## 3. Run quality checks
20
+
21
+ ```bash
22
+ bundle exec rake test
23
+ ```
24
+
25
+ ## 4. Smoke test CLI commands
26
+
27
+ ```bash
28
+ bundle exec csvtool menu
29
+ bundle exec csvtool stats test/fixtures/sample_people.csv --format text
30
+ bundle exec csvtool stats test/fixtures/sample_people.csv --format json
31
+ bundle exec csvtool stats test/fixtures/sample_people.csv --format csv
32
+ ```
33
+
34
+ ## 5. Smoke test output conventions across workflows
35
+
36
+ Verify in menu-driven workflows:
37
+ - prompts/menu/errors are on `stderr`
38
+ - data output is on `stdout`
39
+
40
+ Verify shared output behavior:
41
+ - formatter consistency (`text|json|csv`)
42
+ - color policy (`auto|always|never`, `NO_COLOR`)
43
+ - width-aware summary tables in stats/parity/split/dedupe
44
+
45
+ ## 6. Build and validate gem package
46
+
47
+ ```bash
48
+ gem build csvops.gemspec
49
+ gem install ./csvops-1.0.0.gem
50
+ csvtool menu
51
+ ```
52
+
53
+ ## 7. Commit release prep
54
+
55
+ ```bash
56
+ git add -A
57
+ git commit -m "chore(release): prepare v1.0.0"
58
+ ```
59
+
60
+ ## 8. Tag release
61
+
62
+ ```bash
63
+ git tag -a v1.0.0 -m "v1.0.0"
64
+ git push origin main --tags
65
+ ```
66
+
67
+ ## 9. Publish gem
68
+
69
+ ```bash
70
+ gem push csvops-1.0.0.gem
71
+ ```
72
+
73
+ ## 10. Create GitHub release
74
+
75
+ Create release `v1.0.0` with:
76
+ - Shared output stream services across workflows (`stdout` data, `stderr` UI/errors)
77
+ - Shared formatter services and migrated presenters
78
+ - Shared color policy + colorizer across workflows
79
+ - Shared width-aware table rendering across summary presenters
80
+ - Output conventions documentation (`docs/cli-output-conventions.md`)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Csvtool
4
- VERSION = "0.9.0.alpha"
4
+ VERSION = "1.0.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: csvops
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0.alpha
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Hall
@@ -78,6 +78,7 @@ files:
78
78
  - docs/release-v0.7.0-alpha.md
79
79
  - docs/release-v0.8.0-alpha.md
80
80
  - docs/release-v0.9.0-alpha.md
81
+ - docs/release-v1.0.0.md
81
82
  - exe/csvtool
82
83
  - lib/csvtool/application/use_cases/run_cross_csv_dedupe.rb
83
84
  - lib/csvtool/application/use_cases/run_csv_parity.rb