From 554c566d1941e2f414d4ec7f7ea1a626a96e254c Mon Sep 17 00:00:00 2001 From: Rafa de la Torre Date: Wed, 13 Apr 2016 17:23:45 +0200 Subject: [PATCH] Some small readability improvements --- CONTRIBUTING.md | 9 ++++----- RELEASE.md | 2 -- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 14310db..e951e91 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -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. -``` diff --git a/RELEASE.md b/RELEASE.md index 0ed3c13..cc2a79e 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -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. -```