Skip to content

Commit

Permalink
v1.1.0-rc.2 (#575)
Browse files Browse the repository at this point in the history
* Updated version to `v1.1.0-rc.1`

* Updated version
  • Loading branch information
roll authored Sep 30, 2024
1 parent 8526492 commit e8da4a3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ release:
git checkout main && git pull origin && git fetch -p
@git log --pretty=format:"%C(yellow)%h%Creset %s%Cgreen%d" --reverse -20
@echo "\nReleasing v$(VERSION) in 10 seconds. Press <CTRL+C> to abort\n" && sleep 10
make test && git commit -a -m 'v$(VERSION)' && git tag -a v$(VERSION) -m 'v$(VERSION)'
make test && git tag -a v$(VERSION) -m 'v$(VERSION)'
git push --follow-tags --no-verify

## Runs the FastAPI server in isolation (:4040).
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "opendataeditor",
"license": "MIT",
"version": "1.0.0",
"version": "1.1.0-rc.2",
"productName": "Open Data Editor",
"author": "Open Knowledge Foundation",
"description": "Data management for humans",
Expand Down
8 changes: 8 additions & 0 deletions portal/content/docs/contributing/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,11 @@ make docs
```

It will be automatically published on CloudFlare when merged to the `main` branch with previews available for pull requests.

## Releasing

> You need to be a maintainer to release a new version
- Update the version in `package.json` according to SemVer
- Create a pull request with the changes and get it approved and merged
- Run `make release` locally to create a new release

0 comments on commit e8da4a3

Please sign in to comment.