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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 35b6bb264a0cd3a8331b10fb2e2e91ffb70f7ae5dd645b720fd782342e3713fa
4
- data.tar.gz: 6703d7743e51c03592a032c6efb517a6e3cacadc2feed7b2b57ab42382467ba8
3
+ metadata.gz: 280acee7667fde9fb0ea3699a8326e102874c475fd34c1a8220ab3464919fe70
4
+ data.tar.gz: 4eebde86e789dcef457ea0c79c90e62145b985346028d0f9ed2c80e77b4a4728
5
5
  SHA512:
6
- metadata.gz: ce48022bc4bfe5758716e1f98293f3ed12a79dd96542febf506fe0428c8252c3eb6ffcebc42c6f6513f78ef575c11ba7f8bb059d714a92ac420900785e39c5af
7
- data.tar.gz: '09d810a32eaad27a0bd001603264825592ce6113cb67088ce040884a83261b588bcca71ebc36c790a7907f1e2e33d4837599115d112d52b38dc5ce365f145afe'
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`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module NumaflowRuby
4
- VERSION = "0.1.0"
4
+ VERSION = ENV.fetch("GEM_VERSION", "0.1.0")
5
5
  end
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.0
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
data/CHANGELOG.md DELETED
@@ -1,5 +0,0 @@
1
- ## [Unreleased]
2
-
3
- ## [0.1.0] - 2025-06-18
4
-
5
- - Initial release