numaflow_ruby 0.1.0 → 0.1.7

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: 234be210f471ee61bf2ed5b3bf8158e7db4e5bbd87eca540b84c2c3f44beccfa
4
+ data.tar.gz: 8cb94a6684920fbaf8565b0c9dad322670d704fbeb6ca010e4b6834a50c98b32
5
5
  SHA512:
6
- metadata.gz: ce48022bc4bfe5758716e1f98293f3ed12a79dd96542febf506fe0428c8252c3eb6ffcebc42c6f6513f78ef575c11ba7f8bb059d714a92ac420900785e39c5af
7
- data.tar.gz: '09d810a32eaad27a0bd001603264825592ce6113cb67088ce040884a83261b588bcca71ebc36c790a7907f1e2e33d4837599115d112d52b38dc5ce365f145afe'
6
+ metadata.gz: 37601d091b230b67676769df4a9f4f56c88286a5938191af4f1d70e48e1b3a1f133f4d7ff246f0566abdb420c3bbb6b3f38ed0fbaee85490b4b3b31c1eb5e4ef
7
+ data.tar.gz: f91ba96cae2801687c207af430bb1f1d661e97a78a6bc80460dced75d23ccc2026f151841cf5601320fe49b49bd0166b0109330d99212dadb453e8fd58a3474f
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
 
Binary file
@@ -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,14 +1,14 @@
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.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kyle Cooke
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2025-08-06 00:00:00.000000000 Z
11
+ date: 2025-08-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rb_sys
@@ -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
@@ -60,10 +59,12 @@ files:
60
59
  - ext/numaflow_ruby/src/spec_helper.rs
61
60
  - ext/numaflow_ruby/src/time.rs
62
61
  - lib/numaflow_ruby.rb
62
+ - lib/numaflow_ruby/numaflow_ruby.so
63
63
  - lib/numaflow_ruby/version.rb
64
64
  - sig/numaflow_ruby.rbs
65
65
  homepage: https://github.com/PlayerData/numaflow_ruby
66
- licenses: []
66
+ licenses:
67
+ - MIT
67
68
  metadata:
68
69
  allowed_push_host: https://rubygems.org
69
70
  homepage_uri: https://github.com/PlayerData/numaflow_ruby
data/CHANGELOG.md DELETED
@@ -1,5 +0,0 @@
1
- ## [Unreleased]
2
-
3
- ## [0.1.0] - 2025-06-18
4
-
5
- - Initial release