File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change
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
+
1
5
## 0.6.0 - 2019-08-11
2
6
3
7
Cleanup ` auth_method ` :
Original file line number Diff line number Diff line change 1
1
Gem ::Specification . new do |spec |
2
2
spec . name = "embulk-output-bigquery"
3
- spec . version = "0.6.0 "
3
+ spec . version = "0.6.1 "
4
4
spec . authors = [ "Satoshi Akama" , "Naotoshi Seo" ]
5
5
spec . summary = "Google BigQuery output plugin for Embulk"
6
6
spec . description = "Embulk plugin that insert records to Google BigQuery."
7
7
spec . email = [ "satoshiakama@gmail.com" , "sonots@gmail.com" ]
8
8
spec . licenses = [ "MIT" ]
9
9
spec . homepage = "https://github.com/embulk/embulk-output-bigquery"
10
10
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/*" ]
17
14
spec . test_files = spec . files . grep ( %r{^(test|spec)/} )
18
15
spec . require_paths = [ "lib" ]
19
16
You can’t perform that action at this time.
0 commit comments