Skip to content
This repository was archived by the owner on Jun 15, 2024. It is now read-only.

Commit 2b5f668

Browse files
committed
deprecate unused public interface
1 parent cdceaf4 commit 2b5f668

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ The official release will have a defined and more stable API. If you are already
1515
* UI: Link LambdaCD header to "/" to link back to overview in cases with multiple pipelines (#82)
1616
* Bugs:
1717
* `with-workspace` now creates temporary directories in the home-dir (#79)
18+
* API Changes:
19+
* `lambdacd.presentation.pipeline-state/most-recent-build-number-in` seems to be unused and now considered DEPRECATED.
20+
Will be removed in subsequent releases.
1821

1922
## 0.6.1
2023
* Improvements:

src/clj/lambdacd/presentation/pipeline_state.clj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@
8484
(defn history-for [state]
8585
(sort-by :build-number (map history-entry state)))
8686

87-
(defn most-recent-build-number-in [state]
87+
(defn most-recent-build-number-in
88+
"UNUSED DEPRECATED, will be removed in subsequent releases"
89+
[state]
8890
(apply max (keys state)))
8991

9092

0 commit comments

Comments
 (0)