multi_process 1.1.0 → 1.1.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: 72585d4ab91c2cabcab27ece73e7759bc9ae7d9825564736583b551467dc480d
4
- data.tar.gz: 27d863d2702517f16a7cb35de0f9e6823dbe32212b11465ba509fb91a3565bd9
3
+ metadata.gz: ea43e9440c1ed8b4e62d74a24514447389c104eddc20df1870f14ef8316f90e7
4
+ data.tar.gz: 52de1eb70c9832e2ef8e0fcd53fe247905342bf45a28b40b852365d413a68136
5
5
  SHA512:
6
- metadata.gz: 8c1d02ed6a2ea5d5c08a7776ba4e9ad777f4d15454fc91d711e98cf52c430ef2faf51b2f3a83c40fe0ee3b688368c32e4e69102d65414dfcd12814d17b9b8f5e
7
- data.tar.gz: ed7f3357d64c532b39271affe9156aaf58bc20ed59b73778d8bbdbfd73ac503aa44babd0b80c08e7d6f03a1cc1f33b848d57b1b237cdd408effbff7fe1f5d259
6
+ metadata.gz: 2ed3835793ff96ab2696b4521f93961f46267c4e75d5baa44c5bc45082c888bfbd691ac7d730596377727863c3b9f6b8d33943cdbaf55f49c560979c6affe0be
7
+ data.tar.gz: 95f65e1e3e3c2afb26ca37e99706271774bd949111260a02468036b86fe6e51ddf4cedfa58089154b626217d58e7e72b0affae12f60b4d17424cefffb096b716
@@ -5,13 +5,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
7
  ## [Unreleased]
8
+ ### Fixed
9
+ - Replaced deprecated `#with_clean_env` method
8
10
 
9
- ## 1.1.0 - 2020-11-19
10
- ### Feature
11
- - Add support for IPv6 by using the hostname instead of the loopback IPv4 address (#2)
11
+ ## [1.1.0] - 2020-11-19
12
+ ### Added
13
+ - Add support for IPv6 by using the hostname instead of the loopback IPv4 address (#2)
12
14
 
13
15
  ## 1.0.0 - 2019-05-13
14
16
  ### Fixed
15
17
  - Possible concurrent hash modification while iterating (#1)
16
18
 
17
- [Unreleased]: https://github.com/jgraichen/multi_process/compare/v1.0.0...HEAD
19
+ [Unreleased]: https://github.com/jgraichen/multi_process/compare/v1.1.0...HEAD
20
+ [1.1.0]: https://github.com/jgraichen/multi_process/compare/v1.0.0...v1.1.0
@@ -190,7 +190,7 @@ module MultiProcess
190
190
  childprocess.cwd = dir
191
191
 
192
192
  if clean_env?
193
- Bundler.with_clean_env { childprocess.start }
193
+ Bundler.with_original_env { childprocess.start }
194
194
  else
195
195
  childprocess.start
196
196
  end
@@ -2,7 +2,7 @@ module MultiProcess
2
2
  module VERSION
3
3
  MAJOR = 1
4
4
  MINOR = 1
5
- PATCH = 0
5
+ PATCH = 1
6
6
  STAGE = nil
7
7
  STRING = [MAJOR, MINOR, PATCH, STAGE].reject(&:nil?).join('.')
8
8
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: multi_process
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Graichen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-19 00:00:00.000000000 Z
11
+ date: 2020-12-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -115,7 +115,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
115
115
  - !ruby/object:Gem::Version
116
116
  version: '0'
117
117
  requirements: []
118
- rubygems_version: 3.0.8
118
+ rubygems_version: 3.2.1
119
119
  signing_key:
120
120
  specification_version: 4
121
121
  summary: Handle multiple child processes.