Skip to content

Commit

Permalink
Merge pull request #25 from cyberark/cyberark-bash-lib-24
Browse files Browse the repository at this point in the history
Add CHANGELOG
  • Loading branch information
Geri Jennings authored Mar 6, 2020
2 parents 005000b + bde2b42 commit f879e54
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 10 deletions.
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()
}
}

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

0 comments on commit f879e54

Please sign in to comment.