Skip to content

Commit

Permalink
Release 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jgraichen committed Jan 17, 2025
1 parent f7d75a7 commit 4937722
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 13 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,25 @@

### New

### Changes

### Fixes

### Breaks

## 2.0.0 - (2025-01-17)

---

### New

- Add support for Rails 7.2 and 8.0
- Add support for Ruby 3.3 and 3.4

### Changes

- Use newer Ruby syntax for performance and code improvements

### Fixes

### Breaks

- Require Ruby 3.1+ and Rails 7.0+
Expand Down
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ gem 'rspec-collection_matchers'
gem 'rspec-its'
gem 'webmock', '~> 3.0'

gem 'rake-release', '~> 1.0'

# Doc
group :development do
gem 'rake-release', '~> 1.0'
gem 'redcarpet', platform: :ruby
gem 'yard', '~> 0.9.24'

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Acfs covers model and service abstraction, convenient query and filter methods,
Add this line to your application's Gemfile:

```ruby
gem 'acfs', '~> 1.7'
gem 'acfs', '~> 2.0'
```

And then execute:
Expand All @@ -35,7 +35,7 @@ First you need to define your service(s):

```ruby
class UserService < Acfs::Service
self.base_url = 'http://users.myapp.org'
self.base_url = 'https://users.myapp.org'

# You can configure middlewares you want to use for the service here.
# Each service has it own middleware stack.
Expand Down
9 changes: 3 additions & 6 deletions Rakefile
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
# frozen_string_literal: true

require 'rake/release/task'
require 'rspec/core/rake_task'

RSpec::Core::RakeTask.new(:spec)
task default: :spec
begin
require 'rake/release/task'

Rake::Release::Task.new do |spec|
spec.sign_tag = true
end
rescue LoadError # rubocop:disable Lint/SuppressedException
Rake::Release::Task.new do |spec|
spec.sign_tag = true
end

begin
Expand Down
4 changes: 2 additions & 2 deletions lib/acfs/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

module Acfs
module VERSION
MAJOR = 1
MINOR = 7
MAJOR = 2
MINOR = 0
PATCH = 0
STAGE = nil

Expand Down

0 comments on commit 4937722

Please sign in to comment.