diff --git a/CHANGELOG.md b/CHANGELOG.md index 2357a1ec9..7cfb4c683 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +[3.0.1] - 2021-09-28 +--------------------- +##### Fixed +- [#316](https://github.com/enketo/enketo-express/pull/316) Fix rendering of binary defaults in online-only mode + [3.0.0] - 2021-09-17 --------------------- ##### Changed diff --git a/docs/tutorial-30-develop.html b/docs/tutorial-30-develop.html index 8e04d5dab..417175c37 100644 --- a/docs/tutorial-30-develop.html +++ b/docs/tutorial-30-develop.html @@ -110,12 +110,16 @@

Launch a test form

Release a new version

Documentation is auto-generated and should be re-built for each new release. Do not commit updated documentation in non-release commits. The process to follow for each release that includes various helpful checks is:

    -
  1. Change some code.
  2. -
  3. Make sure tests (npm run test) pass with (run npm run beautify to fix style issues).
  4. -
  5. Build documentation: npm run build-docs.
  6. -
  7. Bump the version tag in package.json file (we follow semantic versioning).
  8. -
  9. Merge all your changes to master (through PR).
  10. -
  11. Add git tag of new version.
  12. +
  13. Check Dependabot alerts for vulnerabilities
  14. +
  15. Update dependencies: npm update
  16. +
  17. npm audit fix
  18. +
  19. Make sure tests pass: npm run test
  20. +
  21. Beautiful code: npm run beautify
  22. +
  23. Build documentation: npm run build-docs
  24. +
  25. Bump the version tag in package.json file (we follow semantic versioning)
  26. +
  27. Update CHANGELOG.md with changes
  28. +
  29. Merge all your changes to master (through PR)
  30. +
  31. Add git tag of new version
diff --git a/package.json b/package.json index 7d9789d3e..bda071530 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "enketo-express", "description": "Webforms evolved.", "homepage": "https://enketo.org", - "version": "3.0.0", + "version": "3.0.1", "main": "./app.js", "engines": { "node": ">=14 <17",