Skip to content

Commit f879e54

Browse files
author
Geri Jennings
authored
Merge pull request #25 from cyberark/cyberark-bash-lib-24
Add CHANGELOG
2 parents 005000b + bde2b42 commit f879e54

File tree

3 files changed

+40
-10
lines changed

3 files changed

+40
-10
lines changed

CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
9+
## [2.0.1] - 2020-02-19
10+
### Added
11+
- Github issue related functions via the `hub` cli
12+
13+
### Changed
14+
- Helpers lib now uses bash-lib logging functions
15+
16+
### Fixed
17+
- Ensured that all variables used within bash-lib functions are declared as local
18+
19+
## [2.0.0] - 2020-01-17
20+
### Added
21+
- Logging Functions, with basic log level support
22+
- Retry Constant function for when you want to retry but don't want increasing
23+
backoff.
24+
25+
### Changed
26+
- Prefixed all function names with bl_ to prevent name clashes with builtins
27+
and other libraries.
28+
- Libraries are now loaded by the init script, so they don't need to be
29+
sourced individually.
30+
31+
## [1.0.0] - 2019-11-20
32+
### Added
33+
- filehandling, git, helpers, k8s, logging and test-utils libraries
34+
- Test Suite

CHANGES.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

Jenkinsfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ pipeline {
1818

1919
stages {
2020

21+
stage('Validate Changelog'){
22+
steps{
23+
parseChangelog()
24+
}
25+
}
26+
2127
stage('BATS Tests') {
2228
steps {
2329
sh './tests-for-this-repo/run-bats-tests'

0 commit comments

Comments
 (0)