Skip to content

Commit

Permalink
docs(changelog): Prepare release 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
julienloizelet committed Oct 24, 2024
1 parent 3a82d77 commit dacae11
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 3 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

The [public API](https://semver.org/spec/v2.0.0.html#spec-item-1) of this project is defined by the `install.yaml` file and `project_files` listed in the `install.yaml` file.

---

## [v1.3.0](https://github.com/ddev/ddev-redis-commander/releases/tag/v1.3.0) - 2023-10-24
[_Compare with previous release_](https://github.com/ddev/ddev-redis-commander/compare/v1.2.0...v1.3.0)


### Added

- Add `redis-commander` command (see [#18](https://github.com/ddev/ddev-redis-commander/pull/18))


---

## [v1.2.0](https://github.com/ddev/ddev-redis-commander/releases/tag/v1.2.0) - 2023-10-06
Expand All @@ -17,7 +28,7 @@ The [public API](https://semver.org/spec/v2.0.0.html#spec-item-1) of this projec

### Changed

- Do not always restart container (see [#14](https://github.com/ddev/ddev-redis-commander/issues/14))
- Do not always restart container (see [#15](https://github.com/ddev/ddev-redis-commander/pull/15))


---
Expand Down
27 changes: 25 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,34 @@ Before installing this add-on, the Redis service must be available, and you have
- [`ddev/ddev-redis` (Redis 6)](https://github.com/ddev/ddev-redis)
- [`ddev/ddev-redis-7` (Redis 7)](https://github.com/ddev/ddev-redis-7)

To install one of them, run `ddev add-on get ddev/ddev-redis` or `ddev add-on get ddev/ddev-redis-7`
For DDEV v1.23.5 or above run

`ddev add-on get ddev/ddev-redis` or `ddev add-on get ddev/ddev-redis-7`

For earlier versions of DDEV run

`ddev get ddev/ddev-redis` or `ddev get ddev/ddev-redis-7`


## Installation

`ddev add-on get ddev/ddev-redis-commander && ddev restart`
For DDEV v1.23.5 or above run

```bash
ddev add-on get ddev/ddev-redis-commander
```

For earlier versions of DDEV run

```bash
ddev get ddev/ddev-redis-commander
```

Then restart your project

```bash
ddev restart
```

## Usage

Expand Down

0 comments on commit dacae11

Please sign in to comment.