diff --git a/readme.md b/readme.md index 0bad838..3b18707 100644 --- a/readme.md +++ b/readme.md @@ -11,7 +11,9 @@ curl ### 8-31-24 -Version 0.1 - compiles with ```gcc -o caur src/main.c -lcurl```, currently will run ```sudo pacman -Syu``` just running, ```./caur```. Currently will *only* download the archive of the package when you specify a package name. +Version 0.1.1 - refactored code for modularity, updated Makefile, compiles with ```make``` now. No longer just a main.c file. + +Version 0.1 - compiles with ```gcc -o caur src/main.c -lcurl```[outdated], currently will run ```sudo pacman -Syu``` just running, ```./caur```. Currently will *only* download the archive of the package when you specify a package name. ```sh git clone https://codeberg.org/ampersandcastles/caur.git diff --git a/src/main.c b/src/main.c index 75e8a44..e97422e 100644 --- a/src/main.c +++ b/src/main.c @@ -1,4 +1,4 @@ -// Version: 0.1 +// Version: 0.1.1 // date created 8-31-24 #include "caur.h" @@ -36,4 +36,4 @@ int main(int argc, char *argv[]) { } else { printf("Failed to download package"); } */ -} \ No newline at end of file +}