Skip to content

Commit

Permalink
chore: merge release-v0.1.5 into main
Browse files Browse the repository at this point in the history
  • Loading branch information
mrjackwills committed Jul 28, 2023
2 parents b9250b4 + 09af220 commit 4516a49
Show file tree
Hide file tree
Showing 6 changed files with 369 additions and 353 deletions.
9 changes: 3 additions & 6 deletions .github/release-body.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
### 2023-06-07
### 2023-07-28

### Chores
+ dependencies updated, [ec0f30b40d1dcb82cf1a3739c5593342a2068df5], [766cd243b1be1b6033f88e904e74b4277c66afd2]

### Features
+ use vuetify platform for v-if thumbnail tooltip, [cb5402173370e1bf1eb2f99dad695bb5f8caae94]
+ use unplugin-vue-components to autoimport, [d7aed978204d6dbc632c1ea6084552ac713badf5]
+ dependencies updated, [3a02d59b4da990a7ac72b7ccfdf34f153c329f5f]
+ create_release v0.2.0, [bb1baa5b72c7543170fb97bbe3068b7c5cf4a05e]

see <a href='https://github.com/mrjackwills/flightbox_vue/blob/main/CHANGELOG.md'>CHANGELOG.md</a> for more details
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# <a href='https://github.com/mrjackwills/flightbox_vue/releases/tag/v0.1.5'>v0.1.5</a>
### 2023-07-28

### Chores
+ dependencies updated, [3a02d59b](https://github.com/mrjackwills/flightbox_vue/commit/3a02d59b4da990a7ac72b7ccfdf34f153c329f5f)
+ create_release v0.2.0, [bb1baa5b](https://github.com/mrjackwills/flightbox_vue/commit/bb1baa5b72c7543170fb97bbe3068b7c5cf4a05e)

# <a href='https://github.com/mrjackwills/flightbox_vue/releases/tag/v0.1.4'>v0.1.4</a>
### 2023-06-07

Expand Down
8 changes: 3 additions & 5 deletions create_release.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

# Vue release
# v0.1.0
# v0.2.0

PACKAGE_NAME='flightbox_vue_site'

Expand Down Expand Up @@ -67,9 +67,7 @@ update_patch () {
}

get_git_remote_url() {
REMOTE_ORIGIN=$(git config --get remote.origin.url)
TO_REMOVE=".git"
GIT_REPO_URL="${REMOTE_ORIGIN//$TO_REMOVE}"
GIT_REPO_URL="$(git config --get remote.origin.url | sed 's/\.git$//')"
}

check_git() {
Expand Down Expand Up @@ -154,7 +152,7 @@ update_version_number_in_files () {
# create new semver version based on user input
# Set MAJOR MINOR PATCH
check_tag () {
LATEST_TAG=$(git describe --tags --abbrev=0 --always)
LATEST_TAG=$(git describe --tags "$(git rev-list --tags --max-count=1)")
echo -e "\nCurrent tag: ${PURPLE}${LATEST_TAG}${RESET}\n"
echo -e "${YELLOW}Choose new tag version:${RESET}\n"
if [[ $LATEST_TAG =~ ^v(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)\.(0|[1-9][0-9]*)(-((0|[1-9][0-9]*|[0-9]*[a-zA-Z-][0-9a-zA-Z-]*)(\.(0|[1-9][0-9]*|[0-9]*[a-zA-Z-][0-9a-zA-Z-]*))*))?(\+([0-9a-zA-Z-]+(\.[0-9a-zA-Z-]+)*))?$ ]]
Expand Down
Loading

0 comments on commit 4516a49

Please sign in to comment.