Skip to content

Commit

Permalink
1.5.15
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Dec 29, 2023
2 parents cbe4c33 + 92dec81 commit b5f290f
Show file tree
Hide file tree
Showing 7 changed files with 27 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.1
1.5.15
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## 1.5.15

- Add:
- The ability to personalize the appearance with custom colors and font settings with documentation
- Branch creation in version_update script with documentation
- Better output for directory size calculator

- Update:
- Repo cloning in Dockerfile

## 1.5.1

- Add:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ooooooooooooo ooooo ooooo ooooo ooo ooooooo ooooo
o888o o888o o888ooooood8 YbodP o888o o88888o
```

![v](https://img.shields.io/badge/tilux-v.1.5.1-blue)
![v](https://img.shields.io/badge/tilux-v.1.5.15-blue)
![docker-compose-action-CI](https://github.com/endormi/tilux/workflows/docker-compose-action-CI/badge.svg?branch=master)
![ruby](https://github.com/endormi/tilux/actions/workflows/ruby.yml/badge.svg)
![make](https://github.com/endormi/tilux/actions/workflows/make.yml/badge.svg)
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Endormi'

# The full version, including alpha/beta/rc tags
release = '1.5.1'
release = '1.5.15'


# -- General configuration ---------------------------------------------------
Expand Down
5 changes: 3 additions & 2 deletions scripts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,6 @@ adding it to the system's `PATH`
- `resize_term` - Resizes terminal
- `run_sphinx_locally` - Run sphinx documentation locally
- `start_dcompose` - Starts docker-compose
- `version_update` - Updates all files that have the current version
and adds a new version heading for `CHANGELOG.md`
- `version_update` - Updates files with the current version,
adds a new version heading to `CHANGELOG.md`, and creates a new
branch if on the master branch.
10 changes: 10 additions & 0 deletions scripts/version_update
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,15 @@ echo "Current version is: $current_version"
read -p "New version: " new_version
[ -z $new_version ] && echo "You need to add a new version." && exit

current_branch=$(git branch --show-current)
if [[ "$current_branch" == "master" ]]; then
branch_name="$new_version"
git checkout -b "$branch_name"
else
echo "Skipping branch creation for $new_version."
echo "Remember to create a branch called '$new_version'."
echo "You are in branch '$current_branch'."
fi

find $files -exec sed -i "s/${current_version}/$new_version/g" {} \;
sed -i "3i ## $new_version \n" CHANGELOG.md
2 changes: 1 addition & 1 deletion tools/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Inside the folder Tilux:

- `command_options.rb` to run all of the scripts Tilux provides.

- `command_processor.rb` Manages command processing in Tilux with encapsulated
- `command_processor.rb` manages command processing in Tilux with encapsulated
helper methods for improved organization and encapsulation.

- `helpers.rb` collection of helper methods.
Expand Down

0 comments on commit b5f290f

Please sign in to comment.