Skip to content

Commit

Permalink
Prepare for v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
timriley committed Nov 2, 2024
1 parent 62c1b1b commit 5ae15ac
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 4 deletions.
26 changes: 23 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Versions
# Hanami::DB

## 0.0.0 (?)
The database layer for Hanami apps.

* Pending...
## [Unreleased]

### Added

### Changed

### Deprecated

### Removed

### Fixed

### Security

## [1.0.0] - 2024-11-02

### Added

- Initial release (@waiting-for-dev)

[v1.0.0]: https://github.com/dry-rb/dry-operation/releases/tag/v1.0.0
6 changes: 5 additions & 1 deletion dry-operation.gemspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# frozen_string_literal: true

lib = File.expand_path("lib", __dir__)
$LOAD_PATH.prepend(lib) unless $LOAD_PATH.include?(lib)
require "dry/operation/version"

Gem::Specification.new do |spec|
spec.name = "dry-operation"
spec.version = "0.0.0"
spec.version = Dry::Operation::VERSION
spec.authors = ["dry-rb team"]
spec.email = ["[email protected]"]
spec.homepage = "https://dry-rb.org/gems/dry-operation"
Expand Down
7 changes: 7 additions & 0 deletions lib/dry/operation/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# frozen_string_literal: true

module Dry
class Operation
VERSION = "1.0.0"
end
end

0 comments on commit 5ae15ac

Please sign in to comment.