atomic 1.1.6-java → 1.1.7-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/atomic.gemspec +2 -2
  2. data/ext/extconf.rb +1 -1
  3. metadata +7 -3
@@ -1,8 +1,8 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
 
3
3
  # Update these to get proper version and commit history
4
- new_version = "1.1.6"
5
- old_version = "1.1.5"
4
+ new_version = "1.1.7"
5
+ old_version = "1.1.6"
6
6
 
7
7
  git_lines = `git log --oneline #{old_version}...#{new_version}`.lines.map {|str| "* #{str}"}.join
8
8
  doc_lines = File.readlines("README.rdoc")
@@ -24,7 +24,7 @@ CODE
24
24
 
25
25
  case CONFIG["arch"]
26
26
  when /mswin32|mingw/
27
- $CFLAGS += " -march=i686"
27
+ $CFLAGS += " -march=native"
28
28
  end
29
29
 
30
30
  create_makefile(extension_name)
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: atomic
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.1.6
5
+ version: 1.1.7
6
6
  platform: java
7
7
  authors:
8
8
  - Charles Oliver Nutter
@@ -11,14 +11,18 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2013-04-06 00:00:00.000000000 Z
14
+ date: 2013-04-11 00:00:00.000000000 Z
15
15
  dependencies: []
16
16
  description: |
17
17
  = An atomic reference implementation for JRuby, Rubinius, and MRI.
18
18
 
19
19
 
20
- == Changes since 1.1.5
20
+ == Changes since 1.1.6
21
21
 
22
+ * fa74e58 Bump version to 1.1.7.
23
+ * 9b58cf0 Merge pull request #20 from lazyspark/master
24
+ * 14fc4a9 Removed compiled gem from src
25
+ * 7d0ade6 Changing the arch to native, to make it successfully compile using mingw
22
26
 
23
27
  == Summary
24
28