Skip to content

Commit

Permalink
Update changelogs and get ready for v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviermaridat committed Jan 31, 2023
1 parent 4f952cb commit d463f6e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ It should also work on FreeBSD and more widely on Windows (Cygwin or Mysys comma
```bash
$ npm install -g qompoter
$ qompoter --version
Qompoter v0.5.0
Qompoter v0.5.1
Dependency manager for C++/Qt by Fylhan
```

Expand All @@ -52,18 +52,19 @@ Dependency manager for C++/Qt by Fylhan
Download it from Github and move it to a place accessible in the `PATH`:

```bash
$ wget https://github.com/Fylhan/qompoter/releases/download/v0.5.0/qompoter.sh -O qompoter.sh && sudo mv qompoter.sh /usr/bin/qompoter
$ wget https://github.com/Fylhan/qompoter/releases/download/v0.5.1/qompoter.sh -O qompoter.sh && sudo mv qompoter.sh /usr/bin/qompoter
$ qompoter --version
Qompoter v0.5.0
Qompoter v0.5.1
Dependency manager for C++/Qt by Fylhan
```

The MD5 sum of the v0.5.0 version is `5c397cec3e4aff2df599a0dff08e2f74`.
The MD5 sum of qompoter.sh v0.5.1 version is `0374e612a2cb61fcb41673d7ed2abd34`.
The SHA512 sum of qompoter.sh v0.5.1 version is `c8b7fa2c9d20bf288c8c434ddebdee64698ed0eae7fa39ae5255f5c38613dae2b0124b20adac0e8e4c10419df69db36fb5c8e71d62032cae5bc86ff4e8eef7b6`.

To enable autocompletion, download the script and source it in your `~/.bashrc` file:

```bash
wget https://github.com/Fylhan/qompoter/releases/download/v0.5.0/qompoter_bash_completion.sh -O qompoter_bash_completion.sh && sudo mv qompoter_bash_completion.sh /usr/share/bash-completion/completions/qompoter
wget https://github.com/Fylhan/qompoter/releases/download/v0.5.1/qompoter_bash_completion.sh -O qompoter_bash_completion.sh && sudo mv qompoter_bash_completion.sh /usr/share/bash-completion/completions/qompoter
echo "test [ -f /usr/share/bash-completion/completions/qompoter ]; source /usr/share/bash-completion/completions/qompoter" >> ~/.bashrc
```

Expand Down
9 changes: 8 additions & 1 deletion changelogs.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
Qompoter Changelogs
===================

[0.5.0]
[0.5.1] - released 2023-01-31
-------

### Fixed

* Stable tags are now sorted before their related alpha and RC tags (e.g. v1.1.10 is now chosen instead of v1.1.10-RC1)

[0.5.0] - released 2022-05-25
-------

### Breaking changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qompoter",
"version": "0.5.0",
"version": "0.5.1",
"description": "Dependency manager for Qt / C++",
"homepage": "https://fylhan.github.com/qompoter",
"author": "Fylhan (http://fylhan.la-bnbox.fr)",
Expand Down
2 changes: 1 addition & 1 deletion qompoter.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

readonly C_PROGNAME=$(basename $0)
readonly C_PROGVERSION="v0.5.0"
readonly C_PROGVERSION="v0.5.1"
readonly C_ARGS="$@"
C_OK="\e[1;32m"
C_FAIL="\e[1;31m"
Expand Down

0 comments on commit d463f6e

Please sign in to comment.