Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [2.0.1] - 2020-02-19
### Added
- Github issue related functions via the `hub` cli

### Changed
- Helpers lib now uses bash-lib logging functions

### Fixed
- Ensured that all variables used within bash-lib functions are declared as local

## [2.0.0] - 2020-01-17
### Added
- Logging Functions, with basic log level support
- Retry Constant function for when you want to retry but don't want increasing
backoff.

### Changed
- Prefixed all function names with bl_ to prevent name clashes with builtins
and other libraries.
- Libraries are now loaded by the init script, so they don't need to be
sourced individually.

## [1.0.0] - 2019-11-20
### Added
- filehandling, git, helpers, k8s, logging and test-utils libraries
- Test Suite
10 changes: 0 additions & 10 deletions CHANGES.md

This file was deleted.

6 changes: 6 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ pipeline {

stages {

stage('Validate Changelog'){
steps{
parseChangelog()
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Snazzy!

}
}

stage('BATS Tests') {
steps {
sh './tests-for-this-repo/run-bats-tests'
Expand Down