diff --git a/README.md b/README.md
index 78d16dc..6c3c06a 100644
--- a/README.md
+++ b/README.md
@@ -1,21 +1,21 @@
# contracts-rb
[](https://rubygems.org/gems/contracts-rb)
-[](https://github.com/magnexis/contracts-rb/actions/workflows/ci.yml)
+[](https://github.com/theworker02/contracts-rb/actions/workflows/ci.yml)
[](LICENSE.txt)
[](https://www.ruby-lang.org/)
-
+
`contracts-rb` adds small, explicit behavioral contracts to Ruby without imposing a type system. It supports parameter and return constraints, preconditions, postconditions, object invariants, state snapshots, mutation policies, exception declarations, introspection, and a dependency-free CLI.
-**Official repository:** [github.com/magnexis/contracts-rb](https://github.com/magnexis/contracts-rb)
+**Official repository:** [github.com/theworker02/contracts-rb](https://github.com/theworker02/contracts-rb)
-**RubyGems:** [rubygems.org/gems/contracts-rb](https://rubygems.org/gems/contracts-rb)
+**RubyGems:** [rubygems.org/gems/contracts-rb](https://rubygems.org/gems/contracts-rb) · current: [0.4.0](https://rubygems.org/gems/contracts-rb/versions/0.4.0)
## Why contracts-rb?
@@ -23,10 +23,10 @@ Ruby tests describe expected examples; contracts keep critical method promises e
## Install
-Install the official package from [RubyGems: `contracts-rb`](https://rubygems.org/gems/contracts-rb).
+Install the official package from [RubyGems: `contracts-rb`](https://rubygems.org/gems/contracts-rb) ([0.4.0](https://rubygems.org/gems/contracts-rb/versions/0.4.0)).
```ruby
-gem "contracts-rb", "~> 0.1"
+gem "contracts-rb", "~> 0.4"
require "contracts"
```
@@ -122,7 +122,7 @@ Ruby 3.1+. Rails is optional. The core is plain Ruby and has no runtime dependen
## Limitations
-0.1.0 wraps declared instance methods directly; its explicit singleton API is experimental. Deep snapshots, static implication proofs for inheritance, and Rails instrumentation are intentionally deferred.
+0.4.0 wraps declared instance methods at definition time. The explicit singleton API (`contract_singleton` / `extend Contracts`) remains experimental. Static implication proofs for inheritance and deeper Rails instrumentation are intentionally deferred. Deep snapshots (`observe …, deep: true`) are supported for arrays, hashes, and sets.
## Development
@@ -136,7 +136,7 @@ MIT licensed. See [CONTRIBUTING.md](CONTRIBUTING.md) and [SECURITY.md](SECURITY.
## Release process
-Maintainers validate with `bundle exec rubocop .`, `bundle exec rspec`, and `bundle exec rake build`. The resulting `contracts-rb-.gem` is attached to the matching GitHub release and published through an authenticated RubyGems session.
+Maintainers validate with `bundle exec rubocop .`, `bundle exec rspec`, and `bundle exec rake build`. Pushing a `v*` tag runs [`.github/workflows/release.yml`](.github/workflows/release.yml), which publishes via [RubyGems Trusted Publishing](https://guides.rubygems.org/trusted-publishing/) (OIDC) and attaches `contracts-rb-.gem` to the GitHub release.
## Benchmark methodology