ilios 1.0.3 → 1.0.4

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: bb2abef9a9a501e9a070743ccf92ed53d9bd216fff56022506293ca2ca4d7786
4
- data.tar.gz: b597a82ffc531bcb6ac74a8e28994210a6455b9640944e4f75223d3419e55590
3
+ metadata.gz: a4f2c920b53b519c07299b86d8c31c290d858609dfda93dcdec8b1e0b1dcd687
4
+ data.tar.gz: c6070d007f1bdef3ba96dd5a2b4620e174f42c5cce6d662452be21fb5d54693d
5
5
  SHA512:
6
- metadata.gz: 5a804a3079851d162a2e6bb1811a801c3f1fd2c3f31bbdfd87754cd5c879b06457726b3f9e6e2486ef2c82c7afdab588f57741f12b1893ea42228edcdeb07151
7
- data.tar.gz: 9b330372c0499631c10f9f79a79f0d8a29f48ebefc46fe440da2c0c345193bb3e62dc508ac185d29593684659ff5fb410f60436c4fc8ad4d7cbff4c41dd6b62d
6
+ metadata.gz: d2a5d977c1ed2c756534697590f8affe5a93ded29a53225ff1f2b0ae41bce7ce9901a1310f5540fef037de53e3b3aff9fa5c073635d983f528558200bf38e6a7
7
+ data.tar.gz: 8456a5c214c9a61bc0fcb5fd0558ea3e24a1345c3e77e8c3f94e4d85f2f7497b74bb1f1a5e755181521005d0102c52db92a3af0aa610be72b87296a32edb224f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 1.0.4
4
+
5
+ - Fix macOS build failure with Apple Clang on macOS 26+ (#23)
6
+
3
7
  ## 1.0.3
4
8
 
5
9
  - Return 0 from ilios_malloc_size when no size API is available
data/ext/ilios/extconf.rb CHANGED
@@ -76,8 +76,14 @@ module CassandraDriverInstaller
76
76
  def cmake_compile_flags
77
77
  flags = super
78
78
  flags << "-DCMAKE_POLICY_VERSION_MINIMUM='3.5'"
79
- # Avoid "Unsupported compiler: AppleClang" on macOS
80
- flags << '-DCMAKE_CXX_COMPILER_ID=Clang' if RUBY_PLATFORM.include?('darwin') && RbConfig::CONFIG['CC'].include?('clang')
79
+ if RUBY_PLATFORM.include?('darwin') && RbConfig::CONFIG['CC'].include?('clang')
80
+ # Avoid "Unsupported compiler: AppleClang" on macOS
81
+ flags << '-DCMAKE_CXX_COMPILER_ID=Clang'
82
+ # Apple Clang on macOS 26+ warns on memset() of non-trivially-copyable types,
83
+ # and cpp-driver's CMake adds -Werror once it detects Clang, so the build fails.
84
+ # cpp-driver 2.17.1 is the final release with no fix, so demote the error back to a warning.
85
+ flags << '-DCMAKE_CXX_FLAGS=-Wno-error=nontrivial-memcall'
86
+ end
81
87
 
82
88
  flags
83
89
  end
data/lib/ilios/version.rb CHANGED
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Ilios
4
- VERSION = '1.0.3'
4
+ VERSION = '1.0.4'
5
5
  public_constant :VERSION
6
6
 
7
7
  CASSANDRA_CPP_DRIVER_VERSION = '2.17.1'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ilios
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.3
4
+ version: 1.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Watson
@@ -58,7 +58,7 @@ metadata:
58
58
  homepage_uri: https://github.com/Watson1978/ilios
59
59
  source_code_uri: https://github.com/Watson1978/ilios
60
60
  bug_tracker_uri: https://github.com/Watson1978/ilios/issues
61
- documentation_uri: https://www.rubydoc.info/gems/ilios/1.0.3
61
+ documentation_uri: https://www.rubydoc.info/gems/ilios/1.0.4
62
62
  rubygems_mfa_required: 'true'
63
63
  rdoc_options: []
64
64
  require_paths:
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  version: '0'
76
76
  requirements:
77
77
  - cmake
78
- rubygems_version: 4.0.10
78
+ rubygems_version: 4.0.15
79
79
  specification_version: 4
80
80
  summary: Cassandra driver written by C language
81
81
  test_files: []