pgchief 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: adccab6ee77468761bf0d05d12954f7b0360547b95f5295797b911ed80f731e2
4
- data.tar.gz: 2a4ae39f43e0da9913f252e70e0583d0e21dd45e48931e94a62c309298d287f8
3
+ metadata.gz: 22c8374fdee4a24fde56bb1edd737694551b73288643b93078efa5f73c149a1b
4
+ data.tar.gz: bbebe5882166def3e96dc08804d695c4c2f9d629735173fbde82dcfcd70aaa1e
5
5
  SHA512:
6
- metadata.gz: 7dea359e077b5c473c7df21e53067954dee0c426df76b8a375a026a3976593dbdd4024c6582650a2fbe1404a34affb1030fe0065842065ad594119cd3f757ace
7
- data.tar.gz: 3b16494cea09736f6b2c16e55d2c5054898a6f023bf06b8862585313617104dc858e98750397baf6b606126aaf2f5bb109f9f02fbf11699b281bdeefd6c41c38
6
+ metadata.gz: 0fd0d65a33b1370a2dda33e4ecd06710b7140eefe911c4f3f9eadbe2bea81bd272a43b8bf013c472afa0cee035f785bd9336d8521b86210536cef43dffc944a8
7
+ data.tar.gz: 3314266704ccb6db85feffdd93a104441565bf89f034295f0ce29d4d3f6783e5ccc134964a409c5885066852f27975c062773b77c6a126cc159dbaace3d8bde3
data/CHANGELOG.md CHANGED
@@ -13,6 +13,16 @@ and this project will try its best to adhere to [Semantic Versioning](https://se
13
13
 
14
14
  ### Fixes
15
15
 
16
+ ## [0.5.1]
17
+
18
+ ### Changes
19
+
20
+ * Update README to note that libpq-dev is a required dependency in order to build
21
+
22
+ ### Fixes
23
+
24
+ * Remove `pry` from being required.
25
+
16
26
  ## [0.5.0]
17
27
 
18
28
  ### Additions
@@ -98,7 +108,9 @@ and this project will try its best to adhere to [Semantic Versioning](https://se
98
108
  - Drop user ✅
99
109
  - List databases ✅
100
110
 
101
- [Unreleased]: https://github.com/jayroh/pgchief/compare/v0.4.0...HEAD
111
+ [Unreleased]: https://github.com/jayroh/pgchief/compare/v0.5.1...HEAD
112
+ [0.5.1]: https://github.com/jayroh/pgchief/releases/tag/v0.5.1
113
+ [0.5.0]: https://github.com/jayroh/pgchief/releases/tag/v0.5.0
102
114
  [0.4.0]: https://github.com/jayroh/pgchief/releases/tag/v0.4.0
103
115
  [0.3.1]: https://github.com/jayroh/pgchief/releases/tag/v0.3.1
104
116
  [0.3.0]: https://github.com/jayroh/pgchief/releases/tag/v0.3.0
data/README.md CHANGED
@@ -24,6 +24,7 @@ below for the feature check-list and current progress.
24
24
  ## Usage
25
25
 
26
26
  ```sh
27
+ # System dependency `libpq-dev` must be installed
27
28
  gem install pgchief
28
29
 
29
30
  # To initialize the config file at `~/.config/pgchief/config.toml`:
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "forwardable"
4
- require "pry"
5
4
 
6
5
  module Pgchief
7
6
  class Database
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Pgchief
4
- VERSION = "0.5.0"
4
+ VERSION = "0.5.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pgchief
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joel Oliveira