Skip to content

Commit fdb6a5c

Browse files
committed
Release instructions
1 parent 1418b89 commit fdb6a5c

File tree

2 files changed

+21
-26
lines changed

2 files changed

+21
-26
lines changed

README.md

+16-26
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,10 @@ To integrate Uppy with your PHP backend:
139139
1. Include Uppy in your HTML:
140140

141141
```html
142-
<link href="https://releases.transloadit.com/uppy/v3.3.1/uppy.min.css" rel="stylesheet">
142+
<link
143+
href="https://releases.transloadit.com/uppy/v3.3.1/uppy.min.css"
144+
rel="stylesheet"
145+
/>
143146
<script src="https://releases.transloadit.com/uppy/v3.3.1/uppy.min.js"></script>
144147
```
145148

@@ -188,17 +191,17 @@ if ($response) {
188191
// Process the assembly result
189192
$assemblyId = $response->data['assembly_id'];
190193
$assemblyStatus = $response->data['ok'];
191-
194+
192195
// You can store the assembly information in your database
193196
// or perform any other necessary actions here
194-
197+
195198
// Log the response for debugging
196199
error_log('Transloadit Assembly Completed: ' . $assemblyId);
197200
error_log('Assembly Status: ' . ($assemblyStatus ? 'Success' : 'Failed'));
198-
201+
199202
// Optionally, you can write the response to a file
200203
file_put_contents('transloadit_response_' . $assemblyId . '.json', json_encode($response->data));
201-
204+
202205
// Send a 200 OK response to Transloadit
203206
http_response_code(200);
204207
echo 'OK';
@@ -480,30 +483,17 @@ Feel free to fork this project. We will happily merge bug fixes or other small
480483
improvements. For bigger changes you should probably get in touch with us
481484
before you start to avoid not seeing them merged.
482485
483-
## Versioning
484-
485-
This project implements the Semantic Versioning guidelines.
486+
### Releasing a new version
486487
487-
Releases will be numbered with the following format:
488+
To release, say `3.2.0` [Packagist](https://packagist.org/packages/transloadit/php-sdk), follow these steps:
488489
489-
`<major>.<minor>.<patch>`
490+
1. Make sure `PACKAGIST_TOKEN` is set in your `.env` file
491+
1. Make sure you are in main: `git checkout main`
492+
1. Update `CHANGELOG.md` and `composer.json`
493+
1. Commit: `git add CHANGELOG.md composer.json && git commit -m "Release 3.2.0"`
494+
1. Tag, push, and release: `source .env && VERSION=3.2.0 ./release.sh`
490495
491-
And constructed with the following guidelines:
492-
493-
- Breaking backward compatibility bumps the major (and resets the minor and patch)
494-
- New additions without breaking backward compatibility bumps the minor (and resets the patch)
495-
- Bug fixes and misc changes bumps the patch
496-
497-
For more information on SemVer, please visit http://semver.org/.
498-
499-
## Releasing a new version
500-
501-
```bash
502-
# 1. update CHANGELOG.md
503-
# 2. update composer.json
504-
# 3. commit all your work
505-
source env.sh && VERSION=3.1.0 ./release.sh
506-
```
496+
This project implements the [Semantic Versioning](http://semver.org/) guidelines.
507497
508498
## License
509499

release.sh

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ set -o nounset
55
set -o pipefail
66
# set -o xtrace
77

8+
if [[ -z "${PACKAGIST_TOKEN}" ]]; then
9+
echo "PACKAGIST_TOKEN is not set"
10+
exit 1
11+
fi
12+
813
if ! grep "${VERSION}" composer.json > /dev/null 2>&1; then
914
echo "First add '${VERSION}' to composer.json please"
1015
exit 1

0 commit comments

Comments
 (0)