fig 1.27.8 → 1.27.10

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 +4 -4
  2. data/Changes +13 -0
  3. data/lib/fig.rb +1 -1
  4. data/lib/fig/update_lock.rb +1 -1
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 66670aed62f628acfe27a7ea37c18ea6346bb93103d032d7f3d738951700382c
4
- data.tar.gz: e393ede7227a80124513d1e0869d214e4d93d08f2f65876e3abce08239825e38
3
+ metadata.gz: aca3d4107601b758e49ddca59e90bb1c0ed2847c91f6c5897e6186dd690ae6c3
4
+ data.tar.gz: 5905c7f1aab9c1097f706f5323ec614b2b1d3f7c5924fd53151a4faba715678d
5
5
  SHA512:
6
- metadata.gz: 58be5c2e2756a57b1738715e340c09650119ae22246556c1a447f3f08c07725c1489e988b90e7f45552187945067ac52a1034e09944d4e7d5da059fc630f0b57
7
- data.tar.gz: f8de76417f11e466071b0af8c7a207fa344cc8c1f215fe5fd089e564b642702dc1a497a3dae3995387fa7069eef89a5a9a05d90ce8ea2b60fd07f27362cfdecf
6
+ metadata.gz: 50c02a6d449dfc241963b678b2a26137249a7859e5b968d1ac9c553aa3678dba7399d1ce14971591d316cc0f1c568e065240bd702324c8f28660cbf5af27d67c
7
+ data.tar.gz: 0d682e893bd59286c798b0ffb0fa56d285a6dd2f4af3c4345f5d25867a9a645945f95a65eaa8ebd7e50508e4052caf31bf9a6a3c0416e62b66a38021d1b54117
data/Changes CHANGED
@@ -1,3 +1,16 @@
1
+ v1.27.10 - 2018/8/1
2
+
3
+ Miscellaneous:
4
+
5
+ - Change how we open the repository lock file to deal with recent Linux
6
+ kernels. In order to get an exclusive lock when the lock is on an NFS v4
7
+ shared volume, we need to have the lock file open for writing prior to lock
8
+ acquisition.
9
+
10
+ v1.27.9.beta.1 - 2018/8/1
11
+
12
+ - Test release.
13
+
1
14
  v1.27.8 - 2018/6/18
2
15
 
3
16
  Miscellaneous:
data/lib/fig.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # coding: utf-8
2
2
 
3
3
  module Fig
4
- VERSION = '1.27.8'
4
+ VERSION = '1.27.10'
5
5
  end
@@ -68,7 +68,7 @@ class Fig::UpdateLock
68
68
  created_file.close
69
69
  end
70
70
 
71
- @lock = File.new(lock_file)
71
+ @lock = File.new(lock_file, 'r+')
72
72
 
73
73
  # *sigh* Ruby 1.8 doesn't support close_on_exec(), but we'll still use it
74
74
  # if we can as a better attempt at safety.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fig
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.27.8
4
+ version: 1.27.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Matthew Foemmel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-06-18 00:00:00.000000000 Z
11
+ date: 2018-08-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colorize