Skip to content

Commit 96a0b03

Browse files
committed
Version 2.0.0 🌟
1 parent 0e8742b commit 96a0b03

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## [Unreleased]
77

8+
## 2.0.0 - 2019-08-18
9+
10+
_No changes._
11+
812
## 2.0.0.rc - 2019-06-23
913
### Added
1014
* Append, reorder, and remove-single-file feature for multiple file uploader(@mshibuya [#2401](https://github.com/carrierwaveuploader/carrierwave/pull/2401))

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ $ gem install carrierwave
3030
In Rails, add it to your Gemfile:
3131

3232
```ruby
33-
gem 'carrierwave', '>= 2.0.0.rc', '< 3.0'
33+
gem 'carrierwave', '~> 2.0'
3434
```
3535

3636
Finally, restart the server to apply the changes.

gemfiles/rails-6-0.gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
source "https://rubygems.org"
22

3-
gem "rails", "~> 6.0.0.beta3"
3+
gem "rails", "~> 6.0.0"
44
gem "activemodel-serializers-xml"
55
gem 'pg', '~> 0.21.0', platforms: :ruby
66

lib/carrierwave/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module CarrierWave
2-
VERSION = "2.0.0.rc"
2+
VERSION = "2.0.0"
33
end

0 commit comments

Comments
 (0)