Skip to content

Commit e28eb30

Browse files
committed
0.6.1
1 parent e6fca1e commit e28eb30

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.6.1 - 2019-08-28
2+
3+
* [maintenance] Release a new gem not to include symlinks to make it work on Windows.
4+
15
## 0.6.0 - 2019-08-11
26

37
Cleanup `auth_method`:

embulk-output-bigquery.gemspec

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
11
Gem::Specification.new do |spec|
22
spec.name = "embulk-output-bigquery"
3-
spec.version = "0.6.0"
3+
spec.version = "0.6.1"
44
spec.authors = ["Satoshi Akama", "Naotoshi Seo"]
55
spec.summary = "Google BigQuery output plugin for Embulk"
66
spec.description = "Embulk plugin that insert records to Google BigQuery."
77
spec.email = ["satoshiakama@gmail.com", "sonots@gmail.com"]
88
spec.licenses = ["MIT"]
99
spec.homepage = "https://github.com/embulk/embulk-output-bigquery"
1010

11-
# Exclude example directory for generating gem.
12-
# example dir use symlink.
13-
# It doesn't work properly on the Windows platform without administrator
14-
# privilege.
15-
spec.files = `git ls-files`.split("\n") + Dir["classpath/*.jar"] -
16-
Dir["example/*" ]
11+
# Exclude example directory which uses symlinks from generating gem.
12+
# Symlinks do not work properly on the Windows platform without administrator privilege.
13+
spec.files = `git ls-files`.split("\n") + Dir["classpath/*.jar"] - Dir["example/*" ]
1714
spec.test_files = spec.files.grep(%r{^(test|spec)/})
1815
spec.require_paths = ["lib"]
1916

0 commit comments

Comments
 (0)