Skip to content

Commit 01a40d4

Browse files
committed
0.2.0 release
1 parent b66446c commit 01a40d4

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Change Log
22
All notable changes to this project will be documented in this file.
33

4-
### [[Unreleased](https://github.com/Zeroji/semicolon/releases/latest)]
4+
### [[v0.2.0](https://github.com/Zeroji/semicolon/releases/tag/v0.2.0)]
55

66
#### Added
77

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## ;;
22

3-
> v0.1.4
3+
> v0.2.0
44
55
This is the repository for the *new* version of `;;`,
66
a nice Discord bot with currently very few features.
@@ -17,7 +17,7 @@ Edit `config.yaml` if you need to, or create another config file
1717
> Alternatively, you can run `./install.py` for a minimalistic setup
1818
1919
To run the bot, type `./core.py` or `./core.py -c your_config.yaml`
20-
Since [v0.1.1](https://github.com/Zeroji/semicolon/releases/tag/v0.1.1) you'll need Python 3.6 - currently, 3.6.0b4 is available.
20+
Since [v0.1.1](https://github.com/Zeroji/semicolon/releases/tag/v0.1.1) you'll need Python 3.6.
2121

2222
#### How to use (Discord side)
2323

@@ -28,7 +28,7 @@ Since multiple bots may use the `;` prefix, you can also mention `;;` instead of
2828
`@;; cog.command arguments`. You can also change the prefix to your liking if you have
2929
the `Manage Server` permission, check `@;; help prefix`.
3030

31-
#### Fancy new stuff in last version
31+
#### Fancy ways to use commands
3232

3333
`;;` can now interpret commands inside other messages, if you use a "breaker" character.
3434
This character defaults to `|` and can be changed with the `breaker` command.

doc/cogs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def hello(author):
8383
As you can see, simply putting `author` in the function definition will give you the corresponding object.
8484
Why? Because `;;` is made in such a way that it'll look at what you want,
8585
and attempt to provide it to you so you don't need to write extra pieces of code.
86-
Here's a list of those "special" arguments: *(as of [v0.1.4](https://github.com/Zeroji/semicolon/releases/tag/v0.1.4))*
86+
Here's a list of those "special" arguments: *(as of [v0.2.0](https://github.com/Zeroji/semicolon/releases/tag/v0.2.0))*
8787

8888
|Argument | Description
8989
| --- | ---
@@ -138,7 +138,7 @@ def add(number_a, number_b):
138138
```
139139

140140
> *May change in future versions (last changed [v0.1.1](https://github.com/Zeroji/semicolon/releases/tag/v0.1.1))*
141-
If the user doesn't provide the arguments you need, for example if they type `add 4`, `;;` will print `Invalid argument count` in the chat, and your command won't be executed.
141+
If the user doesn't provide the arguments you need, for example if they type `add 4`, `;;` will print an error message in the chat, and your command won't be executed.
142142
If the user sends too many arguments, for example by typing `add 1 2 3`, the same thing will happen.
143143

144144
Now what if you'd like to have default arguments? Let's say you want `add` to add 1 if `number_b` isn't specified:

0 commit comments

Comments
 (0)