kpm 0.12.0 → 0.12.2

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: fb012bf11b9ab7cc9417cec007ff6ce492b73e83637c5b55a0261c8b9ef2eb7c
4
- data.tar.gz: 88d8bad35078a098f4a71ca95bb51ec48cbafaf6923bdaf0d2a2d5853aa3b023
3
+ metadata.gz: bef23d0aadea698b8f5213b1b64a5f8e535e93289b003607e260af6afdfc73a7
4
+ data.tar.gz: 884aa289507490215fbf6e5c2f3db273329d0c920ce653ff4808b4d13356be49
5
5
  SHA512:
6
- metadata.gz: 73e89976ba802f662a70235665b32a7758a5d1cb4b7a5c07344f24647d8576bafc19ffbd695c26d798ab083c3c548912bf5e9394a66c77144bed82007d9be9cf
7
- data.tar.gz: ef42456adfdf5e953757138fa116acde1ffd8802edb098ecf87eeffcde817daebac66f34f78a00cfaad7a15d206aa84a4f36978ee5c7b1d1995af844b72e25cc
6
+ metadata.gz: bf092b062375afa1ff0d7a07e5e7cee0991e1db4b9a6cdff35e62916ee5ca47cf861f616d8a5c9bc0c2a1112ec452d1fdf2a1010644fa0e356bc4d33602363b4
7
+ data.tar.gz: d4bf661c93f6cbec38068fd311052816ae3225816b4f96144ed0b19b629df0c689249dbff1be4833d0c44f94811545a2500c43d73415e6be9afa8cfca9ab3152
data/lib/kpm/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module KPM
4
- VERSION = '0.12.0'
4
+ VERSION = '0.12.2'
5
5
  end
data/packaging/kpm.sh CHANGED
@@ -11,4 +11,4 @@ unset BUNDLE_IGNORE_CONFIG
11
11
 
12
12
  # Run the actual app using the bundled Ruby interpreter, with Bundler activated.
13
13
  # See https://github.com/phusion/traveling-ruby/issues/58
14
- exec "$SELFDIR/lib/ruby/bin/ruby" -rbundler/setup -rreadline $SELFDIR/lib/vendor/*ruby/2.*/bin/kpm $@
14
+ exec "$SELFDIR/lib/ruby/bin/ruby" -rbundler/setup -rreadline $SELFDIR/lib/vendor/*ruby/3.*/bin/kpm $@
data/pom.xml CHANGED
@@ -22,7 +22,7 @@
22
22
  <modelVersion>4.0.0</modelVersion>
23
23
  <groupId>org.kill-bill.billing.installer</groupId>
24
24
  <artifactId>kpm</artifactId>
25
- <version>0.12.0</version>
25
+ <version>0.12.2</version>
26
26
  <packaging>pom</packaging>
27
27
  <name>KPM</name>
28
28
  <description>KPM: the Kill Bill Package Manager</description>
@@ -77,12 +77,12 @@
77
77
  </snapshotRepository>
78
78
  </distributionManagement>
79
79
  <properties>
80
- <repository.release.id>sonatype-nexus-staging</repository.release.id>
81
- <repository.release.name>Nexus Release Repository</repository.release.name>
82
- <repository.release.url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</repository.release.url>
83
- <repository.snapshot.id>sonatype-nexus-snapshots</repository.snapshot.id>
84
- <repository.snapshot.name>Sonatype Nexus Snapshots</repository.snapshot.name>
85
- <repository.snapshot.url>https://oss.sonatype.org/content/repositories/snapshots/</repository.snapshot.url>
80
+ <repository.release.id>central</repository.release.id>
81
+ <repository.release.name>Central Release Repository</repository.release.name>
82
+ <repository.release.url>https://central.sonatype.com/service/local/staging/deploy/maven2/</repository.release.url>
83
+ <repository.snapshot.id>central</repository.snapshot.id>
84
+ <repository.snapshot.name>Central Snapshots Repository</repository.snapshot.name>
85
+ <repository.snapshot.url>https://central.sonatype.com/repository/maven-snapshots/</repository.snapshot.url>
86
86
  </properties>
87
87
  <build>
88
88
  <pluginManagement>
@@ -201,17 +201,14 @@
201
201
  </executions>
202
202
  </plugin>
203
203
  <plugin>
204
- <groupId>org.sonatype.plugins</groupId>
205
- <artifactId>nexus-staging-maven-plugin</artifactId>
206
- <version>1.6.8</version>
204
+ <groupId>org.sonatype.central</groupId>
205
+ <artifactId>central-publishing-maven-plugin</artifactId>
206
+ <version>0.7.0</version>
207
207
  <extensions>true</extensions>
208
208
  <configuration>
209
- <serverId>ossrh-releases</serverId>
210
- <nexusUrl>https://oss.sonatype.org/</nexusUrl>
211
- <keepStagingRepositoryOnFailure>true</keepStagingRepositoryOnFailure>
212
- <keepStagingRepositoryOnCloseRuleFailure>true</keepStagingRepositoryOnCloseRuleFailure>
213
- <autoReleaseAfterClose>true</autoReleaseAfterClose>
214
- <stagingProgressTimeoutMinutes>10</stagingProgressTimeoutMinutes>
209
+ <autoPublish>true</autoPublish>
210
+ <publishingServerId>central</publishingServerId>
211
+ <waitUntil>published</waitUntil>
215
212
  </configuration>
216
213
  </plugin>
217
214
  </plugins>
data/tasks/package.rake CHANGED
@@ -156,7 +156,7 @@ def gem_exists?
156
156
  response = `gem specification 'kpm' -r -v #{VERSION} 2>&1`
157
157
  return false if response.nil?
158
158
 
159
- specification = YAML.load(response)
159
+ specification = YAML.safe_load(response, permitted_classes: [Gem::Dependency, Gem::Requirement, Gem::Specification, Gem::Version, Symbol, Time])
160
160
  specification.instance_of?(Gem::Specification)
161
161
  end
162
162
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kpm
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.12.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kill Bill core team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-08-03 00:00:00.000000000 Z
11
+ date: 2025-08-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: highline