Skip to content

Commit 4709a47

Browse files
committed
v0.3.1
1 parent 05cb654 commit 4709a47

3 files changed

Lines changed: 15 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to `skipper` will be documented in this file.
44

55
The skipper release archive can be found on [the github repo](https://github.com/tiknil/skipper/releases)
66

7+
## 0.3.1 - 2025-09-00
8+
9+
- Fix: removed timeout for tty and shell commands
10+
711
## 0.3.0 - 2025-09-02
812

913
**Features**

Readme.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Register the current path as a skipper project:
3232

3333
```bash
3434
# No options, sane defaults will be used and you will be asked to confirm the main fields
35-
skipper init
35+
skipper init
3636

3737
# All fields can also be set via command line options
3838
skipper init --host=[host] --name=[name] \
@@ -47,30 +47,32 @@ You will be asked to automatically install the default
4747

4848
See [Project](#project) for details about each field.
4949

50-
----
50+
---
51+
5152
Start the project containers
5253

5354
```bash
5455
skipper sail
5556
```
5657

57-
----
58+
---
5859

5960
Stops the project containers
6061

6162
```bash
6263
skipper dock
6364
```
6465

65-
----
66+
---
6667

6768
Install caddy root certificate
6869

6970
```bash
7071
skipper proxy:certs
7172
```
7273

73-
----
74+
---
75+
7476
Once a project is running, skipper provides some useful commands to directly interact with it.
7577

7678
```bash
@@ -118,7 +120,7 @@ skipper compose [command]
118120
```
119121

120122
Basically, replace each `docker-compose [command]` with `skipper compose [command]`.
121-
This is *required* because skipper attaches some options to the docker-compose command that are required, such as the
123+
This is _required_ because skipper attaches some options to the docker-compose command that are required, such as the
122124
name or the env file path.
123125

124126
### Project
@@ -158,6 +160,8 @@ If you are developing skipper and you need to test your edits, you have two choi
158160

159161
Now running `composer global require tiknil/skipper` your local version will be used instead of the published version.
160162

163+
See [CONTRIBUTING.md](./CONTRIBUTING.md) for additional technical informations.
164+
161165
### Troubleshooting
162166

163167
#### Invalid SSL certificates on a new project

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"keywords": [ "laravel", "docker", "cli" ],
55
"type": "library",
66
"license": "MIT",
7-
"version": "0.3.0",
7+
"version": "0.3.1",
88
"bin": [
99
"bin/skipper"
1010
],

0 commit comments

Comments
 (0)