From 4205286586b9696d248b2fa78c12c6ad3a30e071 Mon Sep 17 00:00:00 2001 From: Oleg Nenashev Date: Mon, 4 Dec 2023 09:46:49 +0100 Subject: [PATCH] Replace Travis badge by the GitHub Action Travis seems to be long disabled --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f8a8764..4bbbd67 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,7 @@ # Kotlin DSL for Wiremock + [![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.marcinziolo/kotlin-wiremock/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.marcinziolo/kotlin-wiremock) -[![Build Status](https://travis-ci.org/marcinziolo/kotlin-wiremock.svg?branch=master)](https://travis-ci.org/marcinziolo/kotlin-wiremock) +![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/wiremock/kotlin-wiremock/workflow.yaml) [![codecov](https://codecov.io/gh/marcinziolo/kotlin-wiremock/branch/master/graph/badge.svg)](https://codecov.io/gh/marcinziolo/kotlin-wiremock) This is library provides handy kotlin dsl for [Wiremock](http://wiremock.org/) stubbing. @@ -224,4 +225,4 @@ The Library is compatible with Wiremock - 2.8.0 and higher | 2.0.2 | Supports wiremock 3.0.0 and Jetty 11 | | 2.0.0 | Breaking change for verification DSL - changed api for specifying counting | | 1.1.0 | Introduced DSL for [verfication API](https://wiremock.org/docs/verifying/) | -| 1.0.5 | In version 1.0.4 `url` argument (eg.`url equalTo "/hello"`) was treated as a path and matches only a path of url, which was wrong and misleading, in version 1.0.5 it was fixed and new keyword `urlPath` was introduced for matching a path of url (eg.`urlPath equalTo "/hello"`). Note: `url` has precedence in case both are specified | \ No newline at end of file +| 1.0.5 | In version 1.0.4 `url` argument (eg.`url equalTo "/hello"`) was treated as a path and matches only a path of url, which was wrong and misleading, in version 1.0.5 it was fixed and new keyword `urlPath` was introduced for matching a path of url (eg.`urlPath equalTo "/hello"`). Note: `url` has precedence in case both are specified |