vagrant-sshfs 1.3.2 → 1.3.3

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: 4ee5170d16ece9d7e22c89f4638bcaa7e093d1bfad21f888761b2261fdc14d19
4
- data.tar.gz: d9992aa2257e45ebeb76ab5f74cfc71ca442ae171a1e7e63a08e5380b283bcd0
3
+ metadata.gz: 3e9ff9b1fd87da6b91c13cfb4105db3effa881e20b2531b9cd4577fe93a3e44c
4
+ data.tar.gz: ace7bd3d0aecc7be27a6ad38ce54a3feb8fd998d0d372abe0a234e375703160a
5
5
  SHA512:
6
- metadata.gz: 1b79b0401b7fca07baf62338044b0957d68666537d584ec9cdde577ea28b86c3bae9b1849336f5def723cf3108e30dbce72b600d29a5e26e1385aa1bcd7e6af2
7
- data.tar.gz: 358ff68b772b75123b5d13b4d691e957c1ea0e5d6d82071aec5253ece6aeccc57700e5fa7f53202ed957a31510142906d9ba1eb5fa5ad040f24c38d466f5eb74
6
+ metadata.gz: 45788073570dd9a335cc52de46973d980743388d014c376ec4530d94f37c43c5fd58083c41de9e692868d6736258d4c0b84179f8c9ab7fdf884bef09a340bfab
7
+ data.tar.gz: 4eb66e002b3d2f0d7a2ceacda2a602f043c96199196127830aaa5530c5d1790f66b73aaf41293afffdedcec7b303f9932638b391fcba49507943ca59a28ebe67
@@ -8,30 +8,27 @@ follow README for running tests
8
8
  # Make sure to bump version in lib/vagrant-sshfs/version.rb and commit
9
9
  # DO NOT TAG YET
10
10
 
11
+ # Craft a commit message for the tag.
12
+ LASTTAG='v1.3.1'
13
+ VERSION='1.3.2'
14
+ NEWTAG="v${VERSION}"
15
+ cat <<EOF > release-notes.txt
16
+ This is release ${NEWTAG} of the vagrant-sshfs plugin.
11
17
 
12
- # Craft a commit message for the tag. View the commit message for
13
- a previous tag by running: git tag -l -n100 v1.2.1
18
+ Thanks to the following contributors for patches during this release:
14
19
 
15
- -> In vim add thanks to contributors - grab info with
16
- git log --no-merges --pretty=format:"%h - %an - %s"
17
- and
18
- git log --no-merges --pretty=format:"%h - %ae - %s"
19
-
20
-
21
- -> In vim add commit log - grab with
22
- git log --no-merges --pretty=format:"%h %s"
23
-
24
- -> In vim add release message - see previous tag for example
20
+ $(git shortlog --no-merges --pretty=format:"%h %s" -e ${LASTTAG}..HEAD)
21
+ EOF
25
22
 
26
23
  # After crafting message then install git-evtag and sign
27
24
 
28
- git-evtag sign vX.X.X
25
+ git-evtag sign ${NEWTAG}
29
26
 
30
27
 
31
28
  close and type in password for signing
32
29
 
33
- verify with git-evtag verify v1.2.0
34
- verify with git verify-tag v1.2.0
30
+ verify with git-evtag verify ${NEWTAG}
31
+ verify with git verify-tag ${NEWTAG}
35
32
 
36
33
  git push
37
34
  git push --tags
@@ -43,20 +40,17 @@ git push --tags
43
40
  # cannot mount using driver overlay in rootless mode. You need to run it in a `buildah unshare` session
44
41
  buildah unshare ./build.sh
45
42
 
46
- # Sign the output
47
- gpg --armor --detach-sign pkg/vagrant-sshfs-1.2.0.gem
48
- $ ls pkg/vagrant-sshfs-1.2.0.gem*
49
- pkg/vagrant-sshfs-1.2.0.gem pkg/vagrant-sshfs-1.2.0.gem.asc
43
+ # Sign the output (This will create a .asc file)
44
+ gpg2 --armor --detach-sign ./vagrant-sshfs-${VERSION}.gem
50
45
 
51
46
  # make tar.gz and zip files
52
- git archive --format=tar.gz v1.3.0 > vagrant-sshfs-1.3.0.tar.gz
53
- gpg --armor --detach-sign vagrant-sshfs-1.3.0.tar.gz
54
- git archive --format=zip v1.3.0 > vagrant-sshfs-1.3.0.zip
55
- gpg --armor --detach-sign vagrant-sshfs-1.3.0.zip
47
+ git archive --format=tar.gz ${NEWTAG} > vagrant-sshfs-${VERSION}.tar.gz
48
+ gpg2 --armor --detach-sign vagrant-sshfs-${VERSION}.tar.gz
49
+ git archive --format=zip ${NEWTAG} > vagrant-sshfs-${VERSION}.zip
50
+ gpg2 --armor --detach-sign vagrant-sshfs-${VERSION}.zip
56
51
 
57
52
 
58
53
  # Update release notes and upload files on github
59
54
 
60
55
  # push to rubygems with:
61
- gem push pkg/vagrant-sshfs-1.2.0.gem
62
-
56
+ gem push ./vagrant-sshfs-${VERSION}.gem
@@ -113,7 +113,7 @@ module VagrantPlugins
113
113
  ENV['PATH'] += ':/usr/libexec/openssh' # Linux (Red Hat Family)
114
114
  ENV['PATH'] += ':/usr/lib/openssh' # Linux (Debian Family)
115
115
  ENV['PATH'] += ':/usr/lib/ssh' # Linux (Arch Linux Family)
116
- ENV['PATH'] += ':/usr/lib/misc' # Linux (Gentoo Family)
116
+ ENV['PATH'] += ':/usr/lib64/misc' # Linux (Gentoo Family)
117
117
  ENV['PATH'] += ':/usr/libexec/' # Mac OS X
118
118
  end
119
119
 
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module SyncedFolderSSHFS
3
- VERSION = "1.3.2"
3
+ VERSION = "1.3.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-sshfs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.2
4
+ version: 1.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dusty Mabe
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-12-11 00:00:00.000000000 Z
11
+ date: 2020-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: win32-process