Skip to content

Commit 3794aeb

Browse files
committed
Ditch 'v', it's not idomatic
1 parent 63a87c8 commit 3794aeb

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@
22

33
### [master](https://github.com/transloadit/php-sdk/tree/master)
44

5-
diff: https://github.com/transloadit/php-sdk/compare/v3.0.3...master
5+
diff: https://github.com/transloadit/php-sdk/compare/3.0.4...master
66

7-
### [v3.0.3](https://github.com/transloadit/php-sdk/tree/v3.0.3)
7+
### [3.0.4](https://github.com/transloadit/php-sdk/tree/3.0.4)
88

9+
- Ditch `v` prefix in versions as that's more idiomatic
910
- Bring back the getAssembly() function
1011
- Implement Transloadit client header. Closes #25. (#28)
1112
- Fix waitForCompletion
1213
- Travis php & ubuntu version changes
1314
- fix: remove deprecation warning
1415
- Rename tl->deleteAssembly to cancelAssembly and add it to the Readme
1516

16-
diff: https://github.com/transloadit/php-sdk/compare/v2.0.0...v3.0.3
17+
diff: https://github.com/transloadit/php-sdk/compare/v2.0.0...3.0.4
1718

1819
### [v2.1.0](https://github.com/transloadit/php-sdk/tree/v2.1.0)
1920

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,7 @@ For more information on SemVer, please visit http://semver.org/.
490490
# 1. update CHANGELOG.md
491491
# 2. update composer.json
492492
# 3. commit all your work
493-
source env.sh && VERSION=3.0.3 ./release.sh
493+
source env.sh && VERSION=3.0.4 ./release.sh
494494
```
495495

496496
## License

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"keywords": ["transloadit","video","encoding","thumbnails","image","resizing","audio", "waveform", "document","processing","file","uploading"],
66
"homepage": "https://github.com/transloadit/php-sdk",
77
"license": "MIT",
8-
"version": "v3.0.3",
8+
"version": "3.0.4",
99
"require": {
1010
"php": ">=5.3.0"
1111
},

release.sh

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,20 @@ set -o nounset
55
set -o pipefail
66
# set -o xtrace
77

8-
if ! grep "v${VERSION}" composer.json > /dev/null 2>&1; then
9-
echo "First add 'v${VERSION}' to composer.json please"
8+
if ! grep "${VERSION}" composer.json > /dev/null 2>&1; then
9+
echo "First add '${VERSION}' to composer.json please"
1010
exit 1
1111
fi
12-
if ! grep "v${VERSION}" CHANGELOG.md > /dev/null 2>&1; then
13-
echo "First add 'v${VERSION}' to CHANGELOG.md please"
12+
if ! grep "${VERSION}" CHANGELOG.md > /dev/null 2>&1; then
13+
echo "First add '${VERSION}' to CHANGELOG.md please"
1414
exit 1
1515
fi
1616
if [ -n "$(git status --porcelain)" ]; then
1717
echo "Git working tree not clean. First commit all your work please."
1818
exit 1
1919
fi
2020

21-
git tag "v${VERSION}"
21+
git tag "${VERSION}"
2222
git push --tags
2323
curl \
2424
-X POST \

0 commit comments

Comments
 (0)