From 0924d61dce979158b43ee70e03cfbc584d63c3dc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 17 Oct 2024 08:34:54 +0000 Subject: [PATCH] chore(main): release 0.1.0 --- CHANGELOG.md | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ pom.xml | 2 +- 2 files changed, 49 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..6dcf7f4 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,48 @@ +# Changelog + +## 0.1.0 (2024-10-17) + + +### Features + +* add CLI logic to interact with the BMP operations ([44577ce](https://github.com/lentidas/DAI-2425-PW1/commit/44577cec3df7c8ad9ddbd5377f373dfa9b01bcde)) +* add Dockerfile and GitHub workflow to publish image ([#14](https://github.com/lentidas/DAI-2425-PW1/issues/14)) ([42e80f0](https://github.com/lentidas/DAI-2425-PW1/commit/42e80f00e78fb284089afd9f2002d769d7f81735)) +* add first skeleton of the command line program ([66efbdf](https://github.com/lentidas/DAI-2425-PW1/commit/66efbdfdd846fe281dbe316c71bff025d53f58e6)) +* add javadocs comments ([fb4ccca](https://github.com/lentidas/DAI-2425-PW1/commit/fb4cccaeddc36cc9cd15c3af8b0abee6274a3ad0)) +* add more info to the README.md ([a5d8e03](https://github.com/lentidas/DAI-2425-PW1/commit/a5d8e03073f8ac19bead6304e58cdea65d3b65bc)) +* add output to show execution time ([540423b](https://github.com/lentidas/DAI-2425-PW1/commit/540423b4b07758419f0b47821b3cdc9fd5f14188)) +* add skeleton project structure ([#6](https://github.com/lentidas/DAI-2425-PW1/issues/6)) ([418dd02](https://github.com/lentidas/DAI-2425-PW1/commit/418dd02030ed299b09bcd916df68ccc94bdbd575)) +* rename program to shadow ([49f65f9](https://github.com/lentidas/DAI-2425-PW1/commit/49f65f98b211733491ea30db3b056ee11896886f)) +* replace loops by native functions ([4fdf5a4](https://github.com/lentidas/DAI-2425-PW1/commit/4fdf5a4d2d71f53b6f8e2e2cb8f610abd4135d2b)) + + +### Bug Fixes + +* add missing imports for the file output ([4412e36](https://github.com/lentidas/DAI-2425-PW1/commit/4412e36571f1c6bb0c470d252ac612d55752a70e)) +* include only the execute function when measuring execution time ([cf1335f](https://github.com/lentidas/DAI-2425-PW1/commit/cf1335f3835873731791d41ada6e8afbf169e8f5)) +* use proper exceptions where missing ([0a3659e](https://github.com/lentidas/DAI-2425-PW1/commit/0a3659e32a2bab33ecd394956fee4af1c1603cb0)) + + +### Reverts + +* "File reformat, because Java uses tabs and not spaces" ([5187376](https://github.com/lentidas/DAI-2425-PW1/commit/51873764ea03b3db43fee535d17d99676d9c957f)) + + +### Documentation + +* add badges, small introduction and authors ([3f01802](https://github.com/lentidas/DAI-2425-PW1/commit/3f018024cc6c65c6ad1e54da150473ffae0c91bb)) +* add command explanations and demo ([d8a4dae](https://github.com/lentidas/DAI-2425-PW1/commit/d8a4daebdfad6b94cdc7ff529d79af4e7a37d54e)) +* add description to Root command ([9861388](https://github.com/lentidas/DAI-2425-PW1/commit/98613889a17a39df5bc0513e5322af4d7426a97e)) +* add LICENSE.txt ([0347cd5](https://github.com/lentidas/DAI-2425-PW1/commit/0347cd57c9b83e5ed5af2280e07d79f0198e3f96)) +* add new copyright template ([7f0b8ae](https://github.com/lentidas/DAI-2425-PW1/commit/7f0b8aec8855cf25d9fa7c6331435c5cb1e99743)) +* add new copyright template ([8da17f4](https://github.com/lentidas/DAI-2425-PW1/commit/8da17f4f0b248ad63bce519ba4c0b4405124e040)) +* draft first README.md ([93f0394](https://github.com/lentidas/DAI-2425-PW1/commit/93f0394ef917d26cadc4a6bf01a093c3f2d32793)) +* reference sources for the video and image of the demonstration ([4f40fe0](https://github.com/lentidas/DAI-2425-PW1/commit/4f40fe010fa1c562738e4c296b218f2a2648d7b1)) +* release JavaDocs using Maven ([4cf6dec](https://github.com/lentidas/DAI-2425-PW1/commit/4cf6dec78ccc1ddee0d1a0d16563930f71d37ecf)) +* test formatting ([d0c69cb](https://github.com/lentidas/DAI-2425-PW1/commit/d0c69cb0584473ed8959eb8b92a2093ee39c78bc)) +* update README.md with proper videos ([6f88869](https://github.com/lentidas/DAI-2425-PW1/commit/6f88869da3f53e7ebd11968e755ab6e147960806)) + + +### Continuous Integration + +* rename release-please configuration file to proper name ([#25](https://github.com/lentidas/DAI-2425-PW1/issues/25)) ([2751cc9](https://github.com/lentidas/DAI-2425-PW1/commit/2751cc91de0dead35197d813f5cf24d460fc8d90)) diff --git a/pom.xml b/pom.xml index 6bc4b72..90028e9 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ ch.heigvd.dai shadow - 0.0.1 + 0.1.0 21