Skip to content

Commit 5f8eb5c

Browse files
authored
[semver:patch] Redo versions (#58)
1 parent 5c448de commit 5f8eb5c

File tree

4 files changed

+5
-11
lines changed

4 files changed

+5
-11
lines changed

CHANGELOG.md

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,10 @@
1-
## 1.1.3
2-
**Features**
3-
None
4-
5-
**Fixes**
6-
- [#57](https://github.com/codecov/codecov-circleci-orb/pull/57) Add Codecov bash paramter
7-
81
## 1.1.2
92
**Features**
103
None
114

125
**Fixes**
136
- [#52](https://github.com/codecov/codecov-circleci-orb/pull/52) Show error message when curl fails.
7+
- [#57](https://github.com/codecov/codecov-circleci-orb/pull/57) Add Codecov bash paramter
148

159
## 1.1.1
1610
**Features**

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# codecov-circleci-orb
22

3-
## Latest version 1.1.3
3+
## Latest version 1.1.2
44

55
[![codecov.io](https://codecov.io/github/codecov/codecov-circleci-orb/coverage.svg?branch=master)](https://codecov.io/github/codecov/codecov-circleci-orb)
66
[![Circle CI](https://circleci.com/gh/codecov/codecov-circleci-orb.png?style=badge)](https://circleci.com/gh/codecov/codecov-circleci-orb)

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codecov-circleci-orb",
3-
"version": "1.1.3",
3+
"version": "1.1.2",
44
"description": "Codecov CircleCI Orb",
55
"main": "index.js",
66
"devDependencies": {

src/orb.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ commands:
4242
name: Upload Coverage Results
4343
command: |
4444
curl -sS << parameters.url >> | bash -s -- \
45-
-Q "codecov-circleci-orb-1.1.3"
45+
-Q "codecov-circleci-orb-1.1.2"
4646
-f "<< parameters.file >>" \
4747
-t "<< parameters.token >>" \
4848
-n "<< parameters.upload_name >>" \
@@ -56,7 +56,7 @@ commands:
5656
name: Upload Coverage Results
5757
command: |
5858
curl -sS << parameters.url >> | bash -s -- \
59-
-Q "codecov-circleci-orb-1.1.3"
59+
-Q "codecov-circleci-orb-1.1.2"
6060
-t "<< parameters.token >>" \
6161
-n "<< parameters.upload_name >>" \
6262
-F "<< parameters.flags >>" \

0 commit comments

Comments
 (0)