supercov 0.0.48-x86_64-linux-gnu → 0.0.49-x86_64-linux-gnu

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: 2e504361c9e923266a5cd39b3b2e1a5862ef19683ae24efca833c747629d1aeb
4
- data.tar.gz: fdbd9f3c087b420b2a1c294fb234c370a4875e543b656add6bf87960bdacdc94
3
+ metadata.gz: 245c41fb3107978aa9b9bedc39f9f0b4c01a6f0d89548b8382d65218783c3515
4
+ data.tar.gz: bf24661a9e3b0762ae6a61fd7971ea7c75abfdaf9562f46c18786ea88a94ea7e
5
5
  SHA512:
6
- metadata.gz: f83071ee32d125d6a22aa655f3bd698e7e8985ce4ce36311d959e313c4d017291167cb3762e1636301d25c2af94d696a728f8ee7076f4b8d62110348592de07c
7
- data.tar.gz: bf9a1cac46f3510f1398cc0bf44b1628717f3f6143add1f54793321e38f17b4153f45dfbea1db87e59f9de1efe26ea755ed3a82a915002e95d5f6bf85db4604f
6
+ metadata.gz: 8310e0b3243781493567395641c0d997d8befb5c9560e028b367415497cf22778ed5fd61723b58eef0f11fdd32a830d847f5abcd0aef60981500d64b5d74daef
7
+ data.tar.gz: 439144d2265a646d6527aec049d713374b245afc87cca39856c7eeee33d7fd518a914466c3909f5ba63661a5f4adfd9947f895cfb0ab00232c1c788a8a73fbaf
data/README.md CHANGED
@@ -152,11 +152,14 @@ cargo binstall supercov && supercov -- cargo test # crates.io
152
152
  | Rust | Available | `npx supercov -- cargo test` |
153
153
  | Python | Available | `npx supercov -- pytest` |
154
154
  | Ruby | Available | `npx supercov -- rspec` |
155
+ | Go | Available | `npx supercov -- go test ./...` |
156
+ | Java | Available | `npx supercov -- mvn test` |
157
+ | Kotlin | Available | `npx supercov -- ./gradlew test` |
155
158
  | Zig | Coming soon | — |
156
159
  | PHP | Coming soon | — |
157
160
  | C | Coming soon | — |
158
161
 
159
- Supercov requires Node.js 22 or newer. Rust support currently uses Rust 1.95; cargo-nextest 0.9.138 and 0.9.140 are supported. Python support requires CPython 3.12 or newer and measures pytest and unittest runs. Ruby support requires Ruby 3.3 or newer (3.4 or newer for full measurement) and measures RSpec, Minitest, test-unit and Cucumber runs.
162
+ Supercov requires Node.js 22 or newer. Rust support currently uses Rust 1.95; cargo-nextest 0.9.138 and 0.9.140 are supported. Python support requires CPython 3.12 or newer and measures pytest and unittest runs. Ruby support requires Ruby 3.3 or newer (3.4 or newer for full measurement) and measures RSpec, Minitest, test-unit and Cucumber runs. Go support requires Go 1.22 or newer and measures `go test`. Java and Kotlin support requires a JDK 17 or newer with Maven or Gradle, and measures every JUnit Platform engine -- JUnit 5, JUnit 4 through Vintage, Kotest and Spock -- as well as TestNG.
160
163
 
161
164
  ## Supported operating systems and architectures
162
165
 
@@ -168,7 +171,7 @@ The CLI is a single native binary. `npx supercov` selects the build for the mach
168
171
  | Linux | arm64, x64 | glibc 2.28 or newer (Debian 10, Ubuntu 18.10, RHEL 8 and later), or musl (Alpine); chosen automatically |
169
172
  | Windows | arm64, x64 | Windows 10 or newer |
170
173
 
171
- JavaScript, TypeScript, Python, Ruby and Rust suites are verified on Linux, macOS and Windows -- CPython 3.12, 3.13 and 3.14, and Ruby 3.3, 3.4 and 4.0 on every one. Containers, VMs, and remote executors run the same Linux builds. Every release publishes the same binaries to npm, PyPI (`supercov-cli`, a wheel per platform) and RubyGems (`supercov`, a gem per platform except arm64 Windows, which Ruby has no platform for), and the source to crates.io (`supercov`).
174
+ JavaScript, TypeScript, Python, Ruby, Rust, Go, Java and Kotlin suites are verified on Linux, macOS and Windows -- CPython 3.12, 3.13 and 3.14, Ruby 3.3, 3.4 and 4.0, and Go 1.22 and 1.25 on every one, and JDK 17 and 21 on every one that has them (Temurin publishes no 17 for arm64 Windows, so that pairing is 21 alone). Containers, VMs, and remote executors run the same Linux builds. Every release publishes the same binaries to npm, PyPI (`supercov-cli`, a wheel per platform) and RubyGems (`supercov`, a gem per platform except arm64 Windows, which Ruby has no platform for), and the source to crates.io (`supercov`).
172
175
 
173
176
  ## Supported test suites
174
177
 
data/lib/supercov.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Supercov
4
- VERSION = "0.0.48"
4
+ VERSION = "0.0.49"
5
5
  end
data/libexec/supercov CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: supercov
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.48
4
+ version: 0.0.49
5
5
  platform: x86_64-linux-gnu
6
6
  authors:
7
7
  - Supercorp