Skip to content

Commit

Permalink
Version 3.3.2.1 (#124)
Browse files Browse the repository at this point in the history
* Update documentation links in the gemspec

* Bump the version

* Clarify the change in the changelog
  • Loading branch information
kraft001 authored Mar 26, 2023
1 parent 4afbb15 commit ba3a9c1
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ 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).

## 3.3.2.1 — 2023-03-26

### Changed

* Updated links in the gemspec

## 3.3.2 — 2023-03-26

### Changed
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.3.2'
VERSION = '3.3.2.1'
end
end
20 changes: 17 additions & 3 deletions uploadcare-rails.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,29 @@ Gem::Specification.new do |gem|
and further operations with files by wrapping Uploadcare Upload and REST APIs.
DESCRIPTION
gem.metadata = {
'github' => 'https://github.com/uploadcare/uploadcare-rails',
'source_code_uri' => 'https://github.com/uploadcare/uploadcare-rails',
'bug_tracker_uri' => 'https://github.com/uploadcare/uploadcare-rails/issues',
'changelog_uri' => 'https://github.com/uploadcare/uploadcare-rails/blob/main/CHANGELOG.md',
'documentation_uri' => 'https://www.rubydoc.info/gems/uploadcare-rails/',
'homepage_uri' => 'https://uploadcare.com/',
'rubygems_mfa_required' => 'true'
}
gem.homepage = 'https://github.com/uploadcare/uploadcare-rails'
gem.homepage = 'https://uploadcare.com/'
gem.license = 'MIT'

gem.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.rdoc']
gem.files = Dir[
'lib/**/*',
'Gemfile',
'Rakefile',
'uploadcare-rails.gemspec',
'LICENSE.txt',
'README.md',
'CHANGELOG.md'
]

gem.extra_rdoc_files = %w[README.md LICENSE.txt]
gem.rdoc_options = %w[--line-numbers --title Uploadcare --main README.rdoc --encoding=UTF-8]

gem.version = Uploadcare::Rails::VERSION
gem.add_dependency 'rails', '>= 6'
gem.add_dependency 'uploadcare-ruby', '>= 4.3'
Expand Down

0 comments on commit ba3a9c1

Please sign in to comment.