Skip to content

Commit

Permalink
Ready to release
Browse files Browse the repository at this point in the history
  • Loading branch information
scaprile committed Jan 24, 2023
1 parent 292c66e commit 4236405
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3821,7 +3821,7 @@ isn't default port for URL protocol
Usage example:

```c
unsigned short port1 = mg_url_port("htts://myhost.com") // port1 is now 443 (default https port)
unsigned short port1 = mg_url_port("https://myhost.com") // port1 is now 443 (default https port)
unsigned short port2 = mg_url_port("127.0.0.1:567") // port2 is now 567
```

Expand Down Expand Up @@ -3961,7 +3961,7 @@ Parameters:
- `0` - Disable logging
- `1` - Log errors only
- `2` - Log errors and info messages
- `3` - Log errors, into and debug messages
- `3` - Log errors, info and debug messages
- `4` - Log everything

Return value: None
Expand Down
2 changes: 1 addition & 1 deletion examples/websocket-server/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ static const char *s_web_root = ".";

// This RESTful server implements the following endpoints:
// /websocket - upgrade to Websocket, and implement websocket echo server
// /api/rest - respond with JSON string {"result": 123}
// /rest - respond with JSON string {"result": 123}
// any other URI serves static files from s_web_root
static void fn(struct mg_connection *c, int ev, void *ev_data, void *fn_data) {
if (ev == MG_EV_OPEN) {
Expand Down
2 changes: 1 addition & 1 deletion mongoose.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#ifndef MONGOOSE_H
#define MONGOOSE_H

#define MG_VERSION "7.8"
#define MG_VERSION "7.9"

#ifdef __cplusplus
extern "C" {
Expand Down
2 changes: 1 addition & 1 deletion src/version.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define MG_VERSION "7.8"
#define MG_VERSION "7.9"

0 comments on commit 4236405

Please sign in to comment.