Skip to content

Commit

Permalink
w
Browse files Browse the repository at this point in the history
  • Loading branch information
james-millner committed Apr 8, 2024
1 parent 78c1f09 commit 062c5d3
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Kotlin Fit Converter

[![Kotlin](https://img.shields.io/badge/kotlin-1.9.0-blue.svg)](https://kotlinlang.org/)
[![Latest Release](https://img.shields.io/badge/0.4.4-Alpha-red)](https://github.com/example/garmin-fit-converter/releases)
[![Kotlin](https://img.shields.io/badge/kotlin-1.9.23-blue.svg)](https://kotlinlang.org/)
[![Latest Release](https://img.shields.io/badge/0.4.5-Alpha-red)](https://github.com/example/garmin-fit-converter/releases)
[![Gradle Build & Test](https://github.com/james-millner/kotlin-fit-converter/actions/workflows/gradle.yml/badge.svg)](https://github.com/james-millner/kotlin-fit-converter/actions/workflows/gradle.yml)

The Kotlin Fit Converter Library is a Kotlin-based utility that allows users to convert Garmin FIT files into different formats.
Expand All @@ -13,7 +13,7 @@ To ensure full understanding and legal compliance, users thoroughly review the a

Source: https://developer.garmin.com/fit/overview/

The version of the Garmin FIT SDK used in this project is **21.126.00.**
The version of the Garmin FIT SDK used in this project is **21.133.00.**

## Features

Expand Down
Binary file modified external-jar/fit.jar
Binary file not shown.
18 changes: 9 additions & 9 deletions kotlin-fit-converter-lib/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,17 @@ import com.github.jengelman.gradle.plugins.shadow.tasks.ShadowJar

plugins {
// Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin.
id("org.jetbrains.kotlin.jvm") version "1.9.0"
id ("org.jetbrains.kotlin.plugin.serialization") version "1.9.0"
id("org.jetbrains.kotlin.jvm") version "1.9.23"
id ("org.jetbrains.kotlin.plugin.serialization") version "1.9.23"

// For my fat JAR needs
id("com.github.johnrengelman.shadow") version "8.1.1"

// Apply the test-logger plugin to add support outputting test results neatly.
id("com.adarshr.test-logger") version "3.2.0"
id("com.adarshr.test-logger") version "4.0.0"

// Apply the org.jetbrains.dokka plugin to generate documentation.
id("org.jetbrains.dokka") version "1.8.20"
id("org.jetbrains.dokka") version "1.9.20"

// Apply the java-library plugin for API and implementation separation.
`java-library`
Expand All @@ -29,7 +29,7 @@ plugins {
}

group = "kjm.fit.converter"
version = "0.4.4-alpha"
version = "0.4.5-alpha"

repositories {
// Use Maven Central for resolving dependencies.
Expand All @@ -39,15 +39,15 @@ repositories {
dependencies {
implementation(files("../external-jar/fit.jar"))

implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-protobuf:1.5.1")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-protobuf:1.6.3")

// Use the Kotlin JUnit 5 integration.
testImplementation("org.jetbrains.kotlin:kotlin-test-junit5")

// Use the JUnit 5 integration.
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.9.3")
testImplementation("org.junit.jupiter:junit-jupiter-params:5.9.3")
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.10.2")
testImplementation("org.junit.jupiter:junit-jupiter-params:5.10.2")
}

// Apply a specific Java toolchain to ease working on different environments.
Expand Down

0 comments on commit 062c5d3

Please sign in to comment.