numaflow_ruby 0.1.0 → 0.1.6
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 +28 -1
- data/lib/numaflow_ruby/version.rb +1 -1
- metadata +1 -2
- data/CHANGELOG.md +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 280acee7667fde9fb0ea3699a8326e102874c475fd34c1a8220ab3464919fe70
|
4
|
+
data.tar.gz: 4eebde86e789dcef457ea0c79c90e62145b985346028d0f9ed2c80e77b4a4728
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea95981cea2183ba12a02be94012cdf54fef05d3ab2125a4e42e427b78ba1caa4c8ff7d7f3bdaf7657d24dd7a9d0e785e51ee05efbc1705fcdf21b4be793f4d5
|
7
|
+
data.tar.gz: 1695ab4d344b20802d142dad4751835d5fc166427ef981a2c8f4694bb13d662b18b8bc08c2e9e78e0d1ac28258e4adbf42fdef1375bde80b13d2b756b8bab827
|
data/README.md
CHANGED
@@ -24,7 +24,34 @@ TODO: Write usage instructions here
|
|
24
24
|
|
25
25
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
26
26
|
|
27
|
-
To install this gem onto your local machine, run `bundle exec rake install`.
|
27
|
+
To install this gem onto your local machine, run `bundle exec rake install`.
|
28
|
+
|
29
|
+
## Versioning
|
30
|
+
|
31
|
+
This project uses semantic versioning and automatic version bumping based on commit messages. When code is pushed to the main branch, the CI workflow analyzes commit messages and automatically bumps the version according to semantic versioning rules.
|
32
|
+
|
33
|
+
### Commit Message Format
|
34
|
+
|
35
|
+
Follow these conventions in your commit messages to trigger the appropriate version bump:
|
36
|
+
|
37
|
+
- `feat: ...` or `feature: ...` - Adds a new feature (minor version bump)
|
38
|
+
- `fix: ...` - Fixes a bug (patch version bump)
|
39
|
+
- `perf: ...` - Performance improvement (patch version bump)
|
40
|
+
- `docs: ...` - Documentation only changes (no version bump)
|
41
|
+
- `style: ...` - Code style changes (no version bump)
|
42
|
+
- `refactor: ...` - Code refactoring (no version bump)
|
43
|
+
- `test: ...` - Adding or updating tests (no version bump)
|
44
|
+
- `chore: ...` - Maintenance tasks (no version bump)
|
45
|
+
|
46
|
+
To trigger a major version bump (breaking change), include `BREAKING CHANGE:` in the commit body or append `!` to the type:
|
47
|
+
|
48
|
+
```
|
49
|
+
feat!: add new API that breaks backward compatibility
|
50
|
+
|
51
|
+
BREAKING CHANGE: detailed explanation of the breaking change
|
52
|
+
```
|
53
|
+
|
54
|
+
The version will be automatically updated in `version.rb`, and a new git tag will be created and pushed to the repository. The gem will then be published to [rubygems.org](https://rubygems.org).
|
28
55
|
|
29
56
|
## Contributing
|
30
57
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: numaflow_ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kyle Cooke
|
@@ -48,7 +48,6 @@ extra_rdoc_files: []
|
|
48
48
|
files:
|
49
49
|
- ".rspec"
|
50
50
|
- ".rubocop.yml"
|
51
|
-
- CHANGELOG.md
|
52
51
|
- Cargo.lock
|
53
52
|
- Cargo.toml
|
54
53
|
- README.md
|