Some small readability improvements

This commit is contained in:
Rafa de la Torre 2016-04-13 17:23:45 +02:00
parent 6974c99a9b
commit 554c566d19
2 changed files with 4 additions and 7 deletions

View File

@ -27,9 +27,10 @@ make it available to PostgreSQL.
Run the tests with `make test`.
Update extension in a working database with:
* `ALTER EXTENSION observatory VERSION TO 'current';`
`ALTER EXTENSION observatory VERSION TO 'dev';`
```
ALTER EXTENSION observatory VERSION TO 'current';
ALTER EXTENSION observatory VERSION TO 'dev';
```
Note: we keep the current development version install as 'dev' always;
we update through the 'current' alias to allow changing the extension
@ -58,7 +59,6 @@ to the release process for a new revision of the extension.
## Relevant development tasks available in the Makefile
```
* `make help` show a short description of the available targets
* `sudo make install` will generate the extension scripts for the development
@ -67,4 +67,3 @@ to the release process for a new revision of the extension.
* `make test` will run the tests for the installed development extension.
Intended for use by developers.
```

View File

@ -48,7 +48,6 @@ sudo make deploy RELEASE_VERSION=X.Y.Z
## Relevant release & deployment tasks available in the Makefile
```
* `make help` show a short description of the available targets
* `make release` will generate a new release (version number defined in
@ -63,4 +62,3 @@ sudo make deploy RELEASE_VERSION=X.Y.Z
previously generated in `release/`
into PostgreSQL.
Intended to be used by the release manager and deployment jobs.
```