Skip to content

Commit 89f90b6

Browse files
committed
Prepare v6.1.2.0
1 parent ef4c1d3 commit 89f90b6

File tree

3 files changed

+6
-8
lines changed

3 files changed

+6
-8
lines changed

CHANGELOG.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#### Unreleased
1+
## v6.1.2.0
2+
3+
[Full changelog](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/compare/v6.1.1.0...v6.1.2.0)
24

35
#### Fixed
46

@@ -8,10 +10,6 @@
810

911
- [#941](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/pull/941) No longer support configuring the application name by overriding the 'configure_application_name' method.
1012

11-
#### Added
12-
13-
- ...
14-
1513
## v6.1.1.0
1614

1715
[Full changelog](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/compare/v6.1.0.0...v6.1.1.0)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Interested in older versions? We follow a rational versioning policy that tracks
1313

1414
| Adapter Version | Rails Version | Support |
1515
| --------------- | ------------- | ------------------------------------------------------------------------------------------- |
16-
| `6.1.1.0` | `6.1.x` | [active](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/tree/main) |
16+
| `6.1.2.0` | `6.1.x` | [active](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/tree/main) |
1717
| `6.0.2` | `6.0.x` | [active](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/tree/6-0-stable) |
1818
| `5.2.1` | `5.2.x` | [active](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/tree/5-2-stable) |
1919
| `5.1.6` | `5.1.x` | [ended](https://github.com/rails-sqlserver/activerecord-sqlserver-adapter/tree/5-1-stable) |
@@ -115,7 +115,7 @@ development:
115115
Every class that sub classes ActiveRecord::Base will now have an execute_procedure class method to use. This method takes the name of the stored procedure which can be a string or symbol and any number of variables to pass to the procedure. Arguments will automatically be quoted per the connection's standards as normal. For example:
116116
117117
```ruby
118-
Account.execute_procedure(:update_totals, 'admin', nil, true
118+
Account.execute_procedure(:update_totals, 'admin', nil, true)
119119
# Or with named parameters.
120120
Account.execute_procedure(:update_totals, named: 'params')
121121
```

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.1.1.0
1+
6.1.2.0

0 commit comments

Comments
 (0)