Skip to content

Commit

Permalink
Increment version number
Browse files Browse the repository at this point in the history
  • Loading branch information
uptudev committed Jun 4, 2024
1 parent d37ac7f commit b384544
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main.v
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ fn get_random_word() !string {
mut index := (rand.u32() % max_index) + 1

// opens file and reads line at index
file := os.open("rockyou.txt")!
mut file := os.open("rockyou.txt")!
mut buf := []u8{len: 24}

for file.read_bytes_with_newline(mut buf)! > 0 && index > 0 {
Expand Down
2 changes: 1 addition & 1 deletion v.mod
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Module {
name: 'passwordle'
description: 'A TUI game based off of guessing one of the top 5000 most used passwords.'
version: '0.0.1'
version: '0.1.0'
license: 'MIT'
dependencies: []
}

0 comments on commit b384544

Please sign in to comment.