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 +4 -4
- data/README.md +5 -5
- data/docs/release-v1.0.0.md +80 -0
- data/lib/csvtool/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f6fccbf57eba6e28cb683942ed1e9f48505d1e404862a53e79e0c5f49a9fa5df
|
|
4
|
+
data.tar.gz: 617867abe207ee707d465e7207008cb9aaf4510b4647d5840a3e1bba68d34b2a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
##
|
|
323
|
+
## Release
|
|
324
324
|
|
|
325
|
-
Current
|
|
325
|
+
Current version: `1.0.0`
|
|
326
326
|
|
|
327
|
-
Install
|
|
327
|
+
Install from RubyGems:
|
|
328
328
|
|
|
329
329
|
```bash
|
|
330
|
-
gem install csvops
|
|
330
|
+
gem install csvops
|
|
331
331
|
```
|
|
332
332
|
|
|
333
333
|
Release runbook:
|
|
334
334
|
|
|
335
|
-
- `docs/release-
|
|
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`)
|
data/lib/csvtool/version.rb
CHANGED
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.
|
|
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
|