Skip to content

Commit

Permalink
Release v1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
GrimLink committed Sep 11, 2021
1 parent c1d64b3 commit 71076d8
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 47 deletions.
111 changes: 65 additions & 46 deletions CHANELOG.md
Original file line number Diff line number Diff line change
@@ -1,48 +1,67 @@
# Changelog
All notable changes to this project will be documented in this file.

## 1.6.0 - (2021-02-10)
* ADD:
* new cmd option `--redis`, to purge
* new cmd `new-customer`

## 1.5.0 - (2020-10-18)
* ADD:
* new cmd `sample`, for adding sample data
* new cmd `replace`, for removing (optional) core module

## 1.4.0 - (2020-08-21)
* ADD:
* new cmd `new-module`
* IMP:
* casing of variables in `new-theme`

## 1.3.0 - (2020-05-16)
* ADD:
* new cmd `new-theme`
* IMP:
* code quality
* renamed `admin` cmd to `new-admin`
* Skip steps for `new-admin` and `new-theme` via `--yes` flag
* DEL: cms install as this is never used,
[Use create-project instead](https://github.com/GrimLink/create-project)

## 1.2.0 - (2019-11-17)
* ADD:
* purge based on https://github.com/BenButterfield/m2purge
* Static Versioning

## 1.1.0 - (2019-11-06)
* ADD: admin cmd with flag `--yes` for yes to all questions
* IMP: info cmd with Magento version
* DEL: reindex cmd for native solution

## 1.0.2 - (2019-07-14)
* ADD: default user name to admin task

## 1.0.1 - (2019-06-15)
* IMP:
* open multi store function
* readme

## 1.0.0 - (2019-06-10)
* Initial commit
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [1.7.0] - 2021-09-11
### Added
- [Warden](https://github.com/davidalger/warden) support (thanks to @tdgroot)

## [1.6.0] - 2021-02-10
### Added
- New cmd option `--redis`, to purge
- New cmd `new-customer`

## [1.5.0] - 2020-10-18
### Added
- New cmd `sample`, for adding sample data
- New cmd `replace`, for removing (optional) core module

## [1.4.0] - 2020-08-21
### Added
- New cmd `new-module`

### Changed
- Casing of variables in `new-theme`

## [1.3.0] - 2020-05-16
### Added
- New cmd `new-theme`

### Changed
- Code quality
- Renamed `admin` cmd to `new-admin`
- Skip steps for `new-admin` and `new-theme` via `--yes` flag

### Removed
- Cms install as this is never used, [Use create-project instead](https://github.com/GrimLink/create-project)

## [1.2.0] - 2019-11-17
### Added
- Purge based on https://github.com/BenButterfield/m2purge
- Static Versioning

## [1.1.0] - 2019-11-06
### Added
- Admin cmd with flag `--yes` for yes to all questions

### Changed
- Info cmd with Magento version

### Removed
- Reindex cmd for native solution

## [1.0.2] - 2019-07-14
### Added
- Default user name to admin task

## [1.0.1] - 2019-06-15
### Added
- Open multi store function
- Readme

## [1.0.0] - 2019-06-10
Initial Release 🎉
3 changes: 2 additions & 1 deletion mage
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ ITALIC='\033[3m'
GREEN='\033[1;32m'
BLUE='\033[1;34m'

VERSION="1.7.0"
GITNAME="$(git config --global --get user.name | head -n1 | cut -d " " -f1)"
GITEMAIL="$(git config --global --get user.email)"
ADMINNAME="admin_$(echo "$GITNAME" | tr '[:upper:]' '[:lower:]')"
Expand All @@ -27,7 +28,7 @@ fi
case "${1}" in
help)
echo ""
echo -e "${BOLD}Mage ${GREEN}1.6.0${RESET}"
echo -e "${BOLD}Mage ${GREEN}${VERSION}${RESET}"
echo -e "${ITALIC}See https://github.com/GrimLink/mage for the last version${RESET}\n"
echo -e "${BOLD}CMD Options:${RESET}"
echo -e "- ${BLUE}info${RESET} (Show base config for store)"
Expand Down

0 comments on commit 71076d8

Please sign in to comment.