Skip to content

Commit 983ac8c

Browse files
author
Roman Dubrovsky
committed
Bump version to 1.3.0
1 parent 12a1719 commit 983ac8c

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ The format is described in [Contributing notes](CONTRIBUTING.md#changelog-entry-
44

55
## master
66

7+
## 1.3.0 (2022-12-02)
8+
79
### Added
810

911
* [#261](https://github.com/datarockets/ruby-style/issues/261) Add new config `rails-locales`. ([@r.dubrovsky][])
@@ -27,7 +29,7 @@ The format is described in [Contributing notes](CONTRIBUTING.md#changelog-entry-
2729
* [#196](https://github.com/datarockets/ruby-style/issues/196) Fix `Layout/ArrayAlignmentExtended` cop. ([@r.dubrovsky][])
2830
* [#258](https://github.com/datarockets/ruby-style/issues/258) Fix conflict between `Layout/ArrayAlignmentExtended` and `Layout/FirstArrayElementIndentation` cops. ([@r.dubrovsky][])
2931

30-
## 1.2.0
32+
## 1.2.0 (2021-02-24)
3133

3234
### Added
3335

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ Add this line to your application's Gemfile:
1010

1111
```ruby
1212
group :test, :development do
13-
gem 'datarockets-style', '~> 1.1.0'
13+
gem 'datarockets-style', '~> 1.3.0'
1414
end
1515
```
1616

1717
Or, for a Ruby library, add this to your gemspec:
1818

1919
```ruby
20-
spec.add_development_dependency 'datarockets-style', '~> 1.1.0'
20+
spec.add_development_dependency 'datarockets-style', '~> 1.3.0'
2121
```
2222

2323
And then execute:

RELEASING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Releasing
22

33
* Update `version.rb` file accordingly.
4+
* Update `README.mb` file.
45
* Update `CHANGELOG.md` file.
5-
* Update `Gemfile.lock` file via running `bundle install`.
66
* Build and publish (and verify that everything ok):
77

88
```bash

lib/datarockets_style/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module DatarocketsStyle
4-
VERSION = "1.2.0"
4+
VERSION = "1.3.0"
55
end

0 commit comments

Comments
 (0)