Skip to content

Commit

Permalink
Merge pull request #100 from bitPogo/feature/bump-updates
Browse files Browse the repository at this point in the history
Bump Updates
  • Loading branch information
bitPogo authored Dec 2, 2023
2 parents 65439de + d905efb commit 078ef1b
Show file tree
Hide file tree
Showing 42 changed files with 947 additions and 112 deletions.
2 changes: 1 addition & 1 deletion .java_version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
11
17
9 changes: 8 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,14 @@ antibytesPublishing {
}

antibytesQuality {
codeAnalysis.set(CodeAnalysisConfiguration(project = project))
codeAnalysis.set(
CodeAnalysisConfiguration(
project = project,
/*configurationFiles = project.files("${project.projectDir}/detekt/config.yml"),
baselineFile = project.file("${project.projectDir}/detekt/baseline.xml"),
sourceFiles = project.files(project.projectDir),*/
),
)
stableApi.set(StableApiConfiguration())
}

Expand Down
8 changes: 1 addition & 7 deletions core/api/android/core.api
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
public final class tech/antibytes/kfixture/BuildConfig {
public static final field BUILD_TYPE Ljava/lang/String;
public static final field DEBUG Z
public static final field LIBRARY_PACKAGE_NAME Ljava/lang/String;
public fun <init> ()V
}

public final class tech/antibytes/kfixture/ClassNameResolverKt {
public static final fun resolveClassName (Lkotlin/reflect/KClass;)Ljava/lang/String;
}
Expand Down Expand Up @@ -105,6 +98,7 @@ public final class tech/antibytes/kfixture/PublicApi$RangedGenerator$DefaultImpl
public final class tech/antibytes/kfixture/PublicApi$Sign : java/lang/Enum {
public static final field NEGATIVE Ltech/antibytes/kfixture/PublicApi$Sign;
public static final field POSITIVE Ltech/antibytes/kfixture/PublicApi$Sign;
public static fun getEntries ()Lkotlin/enums/EnumEntries;
public static fun valueOf (Ljava/lang/String;)Ltech/antibytes/kfixture/PublicApi$Sign;
public static fun values ()[Ltech/antibytes/kfixture/PublicApi$Sign;
}
Expand Down
1 change: 1 addition & 0 deletions core/api/jvm/core.api
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ public final class tech/antibytes/kfixture/PublicApi$RangedGenerator$DefaultImpl
public final class tech/antibytes/kfixture/PublicApi$Sign : java/lang/Enum {
public static final field NEGATIVE Ltech/antibytes/kfixture/PublicApi$Sign;
public static final field POSITIVE Ltech/antibytes/kfixture/PublicApi$Sign;
public static fun getEntries ()Lkotlin/enums/EnumEntries;
public static fun valueOf (Ljava/lang/String;)Ltech/antibytes/kfixture/PublicApi$Sign;
public static fun values ()[Ltech/antibytes/kfixture/PublicApi$Sign;
}
Expand Down
7 changes: 2 additions & 5 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ import tech.antibytes.gradle.coverage.CoverageApiContract.JacocoCounter
import tech.antibytes.gradle.coverage.CoverageApiContract.JacocoMeasurement
import tech.antibytes.gradle.configuration.apple.ensureAppleDeviceCompatibility
import tech.antibytes.gradle.configuration.sourcesets.nativeWithLegacy
import tech.antibytes.gradle.configuration.sourcesets.setupAndroidTest
import tech.antibytes.gradle.kfixture.config.publishing.FixtureCoreConfiguration

plugins {
Expand Down Expand Up @@ -97,7 +96,7 @@ android {
}

kotlin {
android()
androidTarget()

js(IR) {
nodejs()
Expand Down Expand Up @@ -143,9 +142,7 @@ kotlin {
}
}

setupAndroidTest()

val androidTest by getting {
val androidUnitTest by getting {
dependencies {
implementation(antibytesCatalog.jvm.test.kotlin.core)
implementation(antibytesCatalog.jvm.test.kotlin.junit4)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
/* ktlint-disable filename */
/*
* Copyright (c) 2022 Matthias Geisler (bitPogo) / All rights reserved.
*
* Use of this source code is governed by Apache v2.0
*/

@file:Suppress("ktlint:standard:filename")

package tech.antibytes.kfixture

import java.util.concurrent.ConcurrentHashMap
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
/* ktlint-disable filename */
/*
* Copyright (c) 2022 Matthias Geisler (bitPogo) / All rights reserved.
*
* Use of this source code is governed by Apache v2.0
*/

@file:Suppress("ktlint:standard:filename")

package tech.antibytes.kfixture

import kotlin.reflect.KClass
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/* ktlint-disable filename */
/*
* Copyright (c) 2022 Matthias Geisler (bitPogo) / All rights reserved.
*
* Use of this source code is governed by Apache v2.0
*/

@file:Suppress("OPT_IN_USAGE")
@file:Suppress("OPT_IN_USAGE", "ktlint:standard:filename")

package tech.antibytes.kfixture

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
/* ktlint-disable filename */
/*
* Copyright (c) 2022 Matthias Geisler (bitPogo) / All rights reserved.
*
* Use of this source code is governed by Apache v2.0
*/

@file:Suppress("ktlint:standard:filename")

package tech.antibytes.kfixture

@InternalAPI
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/* ktlint-disable filename */
/*
* Copyright (c) 2022 Matthias Geisler (bitPogo) / All rights reserved.
*
* Use of this source code is governed by Apache v2.0
*/

@file:Suppress("OPT_IN_USAGE")
@file:Suppress("OPT_IN_USAGE", "ktlint:standard:filename")

package tech.antibytes.kfixture

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/* ktlint-disable filename */
/*
* Copyright (c) 2022 Matthias Geisler (bitPogo) / All rights reserved.
*
* Use of this source code is governed by Apache v2.0
*/

@file:Suppress("FINAL_UPPER_BOUND", "OPT_IN_USAGE")
@file:Suppress("FINAL_UPPER_BOUND", "OPT_IN_USAGE", "ktlint:standard:filename")

package tech.antibytes.kfixture

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/* ktlint-disable filename */
/*
* Copyright (c) 2022 Matthias Geisler (bitPogo) / All rights reserved.
*
* Use of this source code is governed by Apache v2.0
*/

@file:Suppress("OPT_IN_USAGE")
@file:Suppress("OPT_IN_USAGE", "ktlint:standard:filename")

package tech.antibytes.kfixture

Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
/* ktlint-disable filename */
/*
* Copyright (c) 2022 Matthias Geisler (bitPogo) / All rights reserved.
*
* Use of this source code is governed by Apache v2.0
*/

@file:Suppress("OPT_IN_USAGE")
@file:Suppress("OPT_IN_USAGE", "ktlint:standard:filename")

package tech.antibytes.kfixture

Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
/* ktlint-disable filename */
/*
* Copyright (c) 2022 Matthias Geisler (bitPogo) / All rights reserved.
*
* Use of this source code is governed by Apache v2.0
*/

@file:Suppress("ktlint:standard:filename")

package tech.antibytes.kfixture.generator.selector

import tech.antibytes.kfixture.PublicApi
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,8 @@ class RangedSpecialArrayFixtureSpec {
RangeType,
PublicApi.Qualifier?,
Function1<RangeType?, Boolean>,
FixtureType,> {
FixtureType,
> {
return when (FixtureType::class) {
CharArray::class -> { fixture, from, to, qualifier, predicate ->
fixture.fixture<Char, CharArray>(
Expand Down Expand Up @@ -294,7 +295,8 @@ class RangedSpecialArrayFixtureSpec {
RangeType,
PublicApi.Qualifier?,
Function1<RangeType?, Boolean>,
FixtureType?,> {
FixtureType?,
> {
return when (FixtureType::class) {
CharArray::class -> { fixture, from, to, qualifier, predicate ->
fixture.fixture<Char, CharArray?>(
Expand Down Expand Up @@ -1643,7 +1645,8 @@ class RangedSpecialArrayFixtureSpec {
ClosedRange<Comparable<Any>>,
PublicApi.Qualifier?,
Function1<RangeType?, Boolean>,
FixtureType,> {
FixtureType,
> {
return when (FixtureType::class) {
CharArray::class -> { fixture, range, qualifier, predicate ->
fixture.fixture<Char, CharArray>(
Expand Down Expand Up @@ -1739,7 +1742,8 @@ class RangedSpecialArrayFixtureSpec {
ClosedRange<Comparable<Any>>,
PublicApi.Qualifier?,
Function1<RangeType?, Boolean>,
FixtureType?,> {
FixtureType?,
> {
return when (FixtureType::class) {
CharArray::class -> { fixture, range, qualifier, predicate ->
fixture.fixture<Char, CharArray?>(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
/* ktlint-disable filename */
/*
* Copyright (c) 2022 Matthias Geisler (bitPogo) / All rights reserved.
*
* Use of this source code is governed by Apache v2.0
*/

@file:Suppress("ktlint:standard:filename")

package tech.antibytes.kfixture

import kotlin.reflect.KClass
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
/* ktlint-disable filename */
/*
* Copyright (c) 2022 Matthias Geisler (bitPogo) / All rights reserved.
*
* Use of this source code is governed by Apache v2.0
*/

@file:Suppress("ktlint:standard:filename")

package tech.antibytes.kfixture

import java.util.concurrent.ConcurrentHashMap
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
/* ktlint-disable filename */
/*
* Copyright (c) 2022 Matthias Geisler (bitPogo) / All rights reserved.
*
* Use of this source code is governed by Apache v2.0
*/

@file:Suppress("ktlint:standard:filename")

package tech.antibytes.kfixture

import kotlin.native.concurrent.ThreadLocal
import kotlin.reflect.KClass

// Ensure stable names
Expand Down
Loading

0 comments on commit 078ef1b

Please sign in to comment.