Skip to content

Commit 335eb4c

Browse files
committedApr 5, 2024·
0.8.2
1 parent a4161ff commit 335eb4c

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed
 

‎build.sc

+5-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@ val scalaVersions = List("2.12.17", "2.13.10", "2.11.12", "3.1.1") ++ dottyVersi
1414
object requests extends Cross[RequestsModule](scalaVersions)
1515
trait RequestsModule extends CrossScalaModule with PublishModule with Mima {
1616
def publishVersion = VcsVersion.vcsState().format()
17-
def mimaPreviousVersions = (Seq("0.7.0", "0.7.1") ++ VcsVersion.vcsState().lastTag.toSeq).distinct
17+
def mimaPreviousVersions =
18+
(
19+
Seq("0.7.0", "0.7.1", "0.8.2") ++
20+
Option.when(VcsVersion.vcsState().commitsSinceLastTag != 0)(VcsVersion.vcsState().lastTag).flatten
21+
).distinct
1822
override def mimaBinaryIssueFilters = Seq(
1923
ProblemFilter.exclude[ReversedMissingMethodProblem]("requests.BaseSession.send"),
2024
ProblemFilter.exclude[DirectMissingMethodProblem]("requests.Response.string")

‎readme.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Requests-Scala 0.8.1
1+
# Requests-Scala 0.8.2
22

33
[![Join the chat at https://gitter.im/lihaoyi/requests-scala](https://badges.gitter.im/lihaoyi/requests-scala.svg)](https://gitter.im/lihaoyi/requests-scala?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
44

@@ -26,7 +26,7 @@ For a hands-on introduction to this library, take a look at the following blog p
2626

2727
## Contents
2828

29-
- [Requests-Scala 0.8.1](#requests-scala-081)
29+
- [Requests-Scala 0.8.2](#requests-scala-081)
3030
- [Contents](#contents)
3131
- [Getting Started](#getting-started)
3232
- [Making a Request](#making-a-request)
@@ -65,9 +65,9 @@ For a hands-on introduction to this library, take a look at the following blog p
6565
Use the following import to get you started:
6666

6767
```scala
68-
ivy"com.lihaoyi::requests:0.8.1" // mill
69-
"com.lihaoyi" %% "requests" % "0.8.1" // sbt
70-
compile "com.lihaoyi:requests_2.12:0.8.1" //gradle
68+
ivy"com.lihaoyi::requests:0.8.2" // mill
69+
"com.lihaoyi" %% "requests" % "0.8.2" // sbt
70+
compile "com.lihaoyi:requests_2.12:0.8.2" //gradle
7171
```
7272

7373
## Making a Request
@@ -675,7 +675,7 @@ codebase or project!
675675

676676
## Changelog
677677

678-
### 0.8.1
678+
### 0.8.2
679679

680680
- fix: content type header not present in multipart item ([#154](https://github.com/com-lihaoyi/requests-scala/pull/154))
681681

0 commit comments

Comments
 (0)
Please sign in to comment.