Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jruby/jruby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 87e1a4969321
Choose a base ref
...
head repository: jruby/jruby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 2a9be2f2ab27
Choose a head ref
  • 2 commits
  • 5 files changed
  • 1 contributor

Commits on Jun 13, 2017

  1. Update for 9.1.11.0.

    enebo committed Jun 13, 2017
    Copy the full SHA
    b5b46b1 View commit details

Commits on Jun 14, 2017

  1. Copy the full SHA
    2a9be2f View commit details
Showing with 10 additions and 5 deletions.
  1. +1 −1 VERSION
  2. +1 −1 core/pom.xml
  3. +2 −0 core/src/main/ruby/jruby/kernel/file.rb
  4. +2 −2 lib/pom.xml
  5. +4 −1 pom.xml
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
9.1.11.0-SNAPSHOT
9.1.11.0
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ DO NOT MODIFIY - GENERATED CODE
<parent>
<groupId>org.jruby</groupId>
<artifactId>jruby-parent</artifactId>
<version>9.1.11.0-SNAPSHOT</version>
<version>9.1.11.0</version>
</parent>
<artifactId>jruby-core</artifactId>
<name>JRuby Core</name>
2 changes: 2 additions & 0 deletions core/src/main/ruby/jruby/kernel/file.rb
Original file line number Diff line number Diff line change
@@ -57,6 +57,8 @@ def self.attach_pfunc(*args)
attach_pfunc :PathRemoveExtensionW, [:buffer_in], :void
attach_pfunc :PathStripToRootW, [:buffer_in], :bool

ffi_lib :kernel32

# We use the presence or absence of this method to indicate everything bound successfully (jruby/jruby#3998)
attach_pfunc :CreateSymbolicLinkW, [:buffer_in, :buffer_in, :dword], :bool
rescue FFI::NotFoundError
4 changes: 2 additions & 2 deletions lib/pom.xml
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ DO NOT MODIFIY - GENERATED CODE
<parent>
<groupId>org.jruby</groupId>
<artifactId>jruby-parent</artifactId>
<version>9.1.11.0-SNAPSHOT</version>
<version>9.1.11.0</version>
</parent>
<artifactId>jruby-stdlib</artifactId>
<name>JRuby Lib Setup</name>
@@ -28,7 +28,7 @@ DO NOT MODIFIY - GENERATED CODE
<dependency>
<groupId>org.jruby</groupId>
<artifactId>jruby-core</artifactId>
<version>9.1.11.0-SNAPSHOT</version>
<version>9.1.11.0</version>
<scope>test</scope>
</dependency>
<dependency>
5 changes: 4 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@ DO NOT MODIFIY - GENERATED CODE
</parent>
<groupId>org.jruby</groupId>
<artifactId>jruby-parent</artifactId>
<version>9.1.11.0-SNAPSHOT</version>
<version>9.1.11.0</version>
<packaging>pom</packaging>
<name>JRuby</name>
<description>JRuby is the effort to recreate the Ruby (http://www.ruby-lang.org) interpreter in Java.</description>
@@ -271,6 +271,9 @@ DO NOT MODIFIY - GENERATED CODE
<requireMavenVersion>
<version>[3.3.0,)</version>
</requireMavenVersion>
<requireReleaseDeps>
<message>No Snapshots Allowed!</message>
</requireReleaseDeps>
</rules>
</configuration>
</execution>