Skip to content

Commit

Permalink
Prep for 3.4.4 release (#150)
Browse files Browse the repository at this point in the history
* Prep for 3.4.4 release

* formatting

* Start testing against 7.2 as well

* Drop 6.x Rails support

* fix name of branch

* Update CHANGELOG.md
  • Loading branch information
vipulnsward authored Nov 7, 2024
1 parent cbf9245 commit f42c7f5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ jobs:
matrix:
gemfile:
- Gemfile
- gemfiles/Gemfile-rails-7-2
- gemfiles/Gemfile-rails-7-1
- gemfiles/Gemfile-rails-7-0
- gemfiles/Gemfile-rails-6-1
ruby:
- 3.0
- 3.1
Expand Down
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,26 @@ All notable changes to this project will be documented in this file.
The format is based now on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

# Unreleased
## 3.4.4 — 2024-11-07

* Adds mongoid support for `mount_uploadcare_file` and `mount_uploadcare_file_group` methods.
### Added

* Add mongoid support for `mount_uploadcare_file` and `mount_uploadcare_file_group` methods.

### Breaking Changes

* Drop support for Rails 6.1x in line with the currently supported Rails versions: https://rubyonrails.org/maintenance

## 3.4.3 — 2024-06-01

### Added

* For `Uploadcare::ConversionApi` added `get_document_conversion_formats_info` method to get the possible document conversion formats.

## 3.4.2 — 2024-05-11

### Added

* Added API support for `AWS Rekognition Moderation` Add-On.

## 3.4.1 — 2024-03-24
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/Gemfile-rails-6-1 → gemfiles/Gemfile-rails-7-2
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ source "https://rubygems.org"

gemspec path: ".."

gem "rails", '~> 6.1.0', github: 'rails/rails', branch: '6-1-stable'
gem "rails", '~> 7.2.0', github: 'rails/rails', branch: '7-2-stable'

gem 'http-parser', '~> 1.2', '>= 1.2.3'
gem 'rake', '~> 13.0.6'
Expand Down
2 changes: 1 addition & 1 deletion lib/uploadcare/rails/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

module Uploadcare
module Rails
VERSION = '3.4.3'
VERSION = '3.4.4'
end
end

0 comments on commit f42c7f5

Please sign in to comment.