export-pull-requests 0.3.5 → 0.3.6

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.
Files changed (5) hide show
  1. checksums.yaml +5 -5
  2. data/Changes +5 -0
  3. data/README.md +2 -1
  4. data/bin/epr +1 -1
  5. metadata +5 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 9aa3a32a54b67ebcc317255f9575cd1cb92eabef
4
- data.tar.gz: e614ed2ff03d1d3571513fe0923bf0162bc45c38
2
+ SHA256:
3
+ metadata.gz: 0eeb60967960338e5c26e80b8fc8284b5e94a2c310ff4aa438d902e3a29a8882
4
+ data.tar.gz: ff4a1a83d12a48de37e192238316e796b00dd71ac5710f749863d4ffdc410324
5
5
  SHA512:
6
- metadata.gz: d584c1f5406cba8733a910513a8079f37d2544cc07656f0484a856d4d38b0121892e9ef49cd809bca61a614ec75f27d2491f1af4a02dad7ac65685224013061a
7
- data.tar.gz: 53b26f30445b60c26955e2212396cd069ab262374a50876938f40b7c131d91472bd3aebf43093738428d8181e298a3020b167aac23df7b5018e8dc1768507ce1
6
+ metadata.gz: 63992bbdfc22722a37a57993ab0420cff9e82884215aae4b2e192c2377d9cf55952654b76a74c1dc554880cfa9938a56fa5c1f429b5f0b2e2771501f001fd99f
7
+ data.tar.gz: bf4f67c8958fb7c9e9f9d7759b2494d48ca35c5d0e004430fb0cc986a7797f10534bddd6bc3a4d91f2d890dd4364e5c5f83f39cadc5e017f36a434f597e7050c
data/Changes CHANGED
@@ -1,3 +1,8 @@
1
+ v0.3.6 2021-04-28
2
+ --------------------
3
+ Bug fixes:
4
+ * Require Ruby < 3 (#25)
5
+
1
6
  v0.3.5 2021-03-16
2
7
  --------------------
3
8
  Enhancements:
data/README.md CHANGED
@@ -6,7 +6,8 @@ Supports GitHub, GitLab, and Bitbucket.
6
6
 
7
7
  ## Installation
8
8
 
9
- [Ruby](https://www.ruby-lang.org/en/documentation/installation/) is required.
9
+ [Ruby](https://www.ruby-lang.org/en/documentation/installation/) version < 3 is required
10
+ ([why?](https://github.com/sshaw/export-pull-requests/issues/26)).
10
11
 
11
12
  With Ruby installed run:
12
13
 
data/bin/epr CHANGED
@@ -9,7 +9,7 @@ require "github_api"
9
9
  require "gitlab"
10
10
  require "bitbucket_rest_api"
11
11
 
12
- VERSION = "0.3.5"
12
+ VERSION = "0.3.6"
13
13
  SERVICES = %w[github gitlab bitbucket]
14
14
  GIT_CONFIGS = %w[epr.token github.oauth-token]
15
15
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: export-pull-requests
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.5
4
+ version: 0.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Skye Shaw
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-03-16 00:00:00.000000000 Z
11
+ date: 2021-04-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: github_api
@@ -89,9 +89,9 @@ require_paths:
89
89
  - lib
90
90
  required_ruby_version: !ruby/object:Gem::Requirement
91
91
  requirements:
92
- - - ">="
92
+ - - "<"
93
93
  - !ruby/object:Gem::Version
94
- version: '0'
94
+ version: '3'
95
95
  required_rubygems_version: !ruby/object:Gem::Requirement
96
96
  requirements:
97
97
  - - ">="
@@ -99,7 +99,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
99
99
  version: '0'
100
100
  requirements: []
101
101
  rubyforge_project:
102
- rubygems_version: 2.6.14
102
+ rubygems_version: 2.7.6
103
103
  signing_key:
104
104
  specification_version: 4
105
105
  summary: Export pull requests and issues to a CSV file.