Skip to content

Commit 2c0dd8f

Browse files
committed
Version increment
1 parent 4c17397 commit 2c0dd8f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
<h1>Get cozy with your logs 🔥🪵</h1>
44
</div>
55

6-
I hated working with log files. They were obtuse, easy to search yet hard to filter, and just plain difficult to look at for long periods of time. . But with how much logging we do (some might say too much), we should at least treat viewing them as a first class consideration.
6+
I hated working with log files. They were obtuse, easy to search yet hard to filter, and just plain difficult to look at for long periods of time. But with how much logging we do (some might say too much), we should at least treat viewing them as a first class consideration.
77

8-
This project came about as I was working with the ever wonderful [BubbleTea](https://github.com/charmbracelet/bubbletea) and was getting lost in the flow of messages. I wanted to use normal logging strategies, but obviously that won't work with an app taking the standard I/O. Using `tail` to monitor logs in realtime just felt so... inelegant, especially given the goal is to make the terminal pretty and fun!
8+
This project came about as I was working with the (ever wonderful) [BubbleTea](https://github.com/charmbracelet/bubbletea) and was getting lost in the flow of messages. I wanted to use normal logging strategies, but obviously that won't work with an app taking the standard I/O. Using `tail` to monitor logs in realtime just felt so... inelegant, especially given the goal is to make the terminal pretty and fun!
99

10-
Enter `campfire`.
10+
Enter... `campfire`!
1111

1212
<div align="center">
1313
<h2>Why use <code>campfire</code> ❓</h2>
@@ -46,7 +46,7 @@ Make your log files helpful instead of scary and cumbersome.
4646
- Extract it and place the resulting binary on your `$PATH` and ensure it is executable
4747
```sh
4848
cd ~/Downloads # ... or wherever else you downloaded it
49-
tar -xvf campfire_[etc].tar.gz # x: Extract; v: Verbose output; f: Give filename
49+
tar -xvf campfire_[etc].tar.gz # x: Extract; v: Verbose output; f: Give filename
5050
chmod +x campfire # Make file executable
5151
mv campfire [somewhere on your $PATH] # Move the file to somewhere on your path
5252
```

cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"github.com/spf13/cobra"
1414
)
1515

16-
const Version = "0.9.0"
16+
const Version = "0.9.1"
1717

1818
var rootCmd = &cobra.Command{
1919
Use: "campfire <./path/to/file>",

0 commit comments

Comments
 (0)