Skip to content

Commit de8ef93

Browse files
committed
Bump 1.0.0
1 parent 1fef990 commit de8ef93

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
11
# Change log
22

3-
## master (unreleased)
3+
## 1.0.0 (2020-11-09)
44

55
- Add `--name` option to model generator to specify the migration name. ([@palkan][])
66

77
When you update Logidze installation for a model multiple times, you might hit the `DuplicateMigrationNameError` (see [#167](https://github.com/palkan/logidze/issues/167)).
88

9-
## 1.0.0.rc1 (2020-09-01)
10-
119
- Add `.with_full_snapshot` to add full snapshots to the log instead of diffs. ([@palkan][])
1210

1311
Useful in combination with `.without_logging`: first, you perform multiple updates without logging, then

README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ Logidze provides tools for logging DB records changes when using PostgreSQL (>=9
1010
Logidze allows you to create a DB-level log (using triggers) and gives you an API to browse this log.
1111
The log is stored with the record itself in JSONB column. No additional tables required.
1212

13-
**❗️ IMPORTANT:** This page contains documentation for the upcoming v1.0. For the latest release documentation see the [0-stable branch](https://github.com/palkan/logidze/tree/0-stable). If you're just starting with Logidze, we recommend using the latest release candidate (`1.0.0.rc1`).
14-
1513
🤔 [How is Logidze pronounced?](https://github.com/palkan/logidze/issues/73)
1614

1715
Other requirements:
@@ -56,7 +54,7 @@ Other requirements:
5654
Add Logidze to your application's Gemfile:
5755

5856
```ruby
59-
gem "logidze", "1.0.0.rc1"
57+
gem "logidze", "~> 1.0.0"
6058
```
6159

6260
Install required DB extensions and create trigger function:

lib/logidze/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 Logidze
4-
VERSION = "1.0.0.rc1"
4+
VERSION = "1.0.0"
55
end

0 commit comments

Comments
 (0)