Skip to content

Commit

Permalink
Fix project version, add changelog entry and add dependency on tests …
Browse files Browse the repository at this point in the history
…before publishing
Andronnix committed Dec 2, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent e5f0c66 commit bc87d7a
Showing 3 changed files with 11 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .teamcity/settings.kts
Original file line number Diff line number Diff line change
@@ -11,9 +11,9 @@ import jetbrains.buildServer.configs.kotlin.triggers.vcs
project {
description = "REST API client written in Kotlin"

buildType {
val buildAndTest = buildType {
id("Build")
name = "Build"
name = "Build and test"
triggers {
vcs {
branchFilter = "+:<default>"
@@ -244,6 +244,11 @@ project {
dependencies {
snapshot(securityCheck) {
onDependencyFailure = FailureAction.FAIL_TO_START
reuseBuilds = ReuseBuilds.NO
}
snapshot(buildAndTest) {
onDependencyFailure = FailureAction.FAIL_TO_START
reuseBuilds = ReuseBuilds.SUCCESSFUL
}
}

3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,9 @@

All notable changes to teamcity-rest-client library will be documented in this file.

## [3.0.2]
- Fix web links so they don't link to deprecated pages.

## [3.0.1]
Stop using deprecated `tags` dimension to filter builds, use `tag` instead.

2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
projectVersion=1.22
projectVersion=3.0.2

0 comments on commit bc87d7a

Please sign in to comment.