summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Sabino Mullane2009-07-14 15:03:42 +0000
committerGreg Sabino Mullane2009-07-14 15:03:42 +0000
commitefd24063d3dcc7c60955e35055a2c3490744fdca (patch)
treed5ffa171c7903b6ab762aa5724e1bb0732438c14
parent8b64602addce683b1cb5839737711c7286730b24 (diff)
Quick notes on the release process to keep me sane.
-rw-r--r--.gitignore1
-rw-r--r--MANIFEST.SKIP1
-rw-r--r--README.dev35
3 files changed, 37 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index eed226756..9cf0fee2c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,3 +12,4 @@ blib/*
test_database_check_postgres*
*.tmp
cover_db/
+check_postgres- \ No newline at end of file
diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP
index 7c8e4239c..e4167142f 100644
--- a/MANIFEST.SKIP
+++ b/MANIFEST.SKIP
@@ -15,3 +15,4 @@ t/99_perlcritic.t
t/99_pod.t
t/00_release.t
t/99_spellcheck.t
+README.DEV
diff --git a/README.dev b/README.dev
new file mode 100644
index 000000000..33ee3528c
--- /dev/null
+++ b/README.dev
@@ -0,0 +1,35 @@
+
+This file is to help developers of the check_postgres program.
+Additions are welcome!
+
+** RELEASE PROCESS **
+
+Quick notes on the current release process:
+
+* Make sure all changes are recorded in the relevant POD section.
+* Add a release date next to the new version number
+* Change the version number everywhere (use prove -v t/00_release.t to verify)
+* git commit as needed
+* Run: make html
+* Run: make signature_asc
+* Run: make signature
+* Run: export TEST_SIGNATURE=1 TEST_CRITIC=1 TEST_SPELL=1 TEST_POD=1 TEST_AUTHOR=1
+* Run: make distclean; perl Makefile.PL; make disttest
+* git commit as needed
+* Run: make dist
+* git push
+
+Login to the bucardo.org box, and then:
+
+* cd tmp/check_postgres
+* git pull
+* make distclean; perl Makefile.PL; make disttest; make dist
+* prove -v t/00_release.t
+* cd ~/htdocs/check_postgres
+* cp -i ~/tmp/check_postgres/check_postgres* .
+* edit latest_version.txt
+* edit index.html
+
+* Email to check_postgres-announce with summary of changes
+
+