Skip to content

Commit 930bab7

Browse files
Horse 3.1.0
1 parent 8a58165 commit 930bab7

File tree

6 files changed

+388
-296
lines changed

6 files changed

+388
-296
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
# C++ object files produced when C/C++ Output file generation is configured.
2525
# Uncomment this if you are not using external objects (zlib library for example).
2626
#*.obj
27-
#
2827

2928
# Delphi compiler-generated binaries (safe to delete)
3029
*.exe
@@ -60,6 +59,9 @@
6059
# Delphi history and backups
6160
__history/
6261
__recovery/
62+
**/backup/
63+
**/lib/
64+
*.lps
6365
*.~*
6466

6567
# Castalia statistics file (since XE7 Castalia is distributed with Delphi)

boss-lock.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"hash": "24a7516a6c6f13c3c292e7ed59850932",
3-
"updated": "2022-02-16T09:01:31.8182332-03:00",
3+
"updated": "2023-03-09T23:21:21.0966659-03:00",
44
"installedModules": {
55
"github.com/hashload/horse": {
66
"name": "horse",
7-
"version": "3.0.0",
8-
"hash": "195e14c9c225f81a8c69d18b5118c149",
7+
"version": "3.1.0",
8+
"hash": "fc3b8eefb46c1a3b387e86ca46a9faa1",
99
"artifacts": {},
1010
"failed": false,
1111
"changed": false

boss.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "horse-cors",
33
"description": "",
4-
"version": "1.0.0",
4+
"version": "1.0.6",
55
"homepage": "",
66
"mainsrc": "src/",
77
"projects": [],
88
"dependencies": {
9-
"github.com/hashload/horse": "^3.0.0"
9+
"github.com/hashload/horse": "^3.1.0"
1010
}
1111
}

samples/delphi/Console.dpr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ begin
2222
THorse.Use(CORS);
2323

2424
THorse.Get('/ping',
25-
procedure(Req: THorseRequest; Res: THorseResponse; Next: TProc)
25+
procedure(Req: THorseRequest; Res: THorseResponse)
2626
begin
2727
Res.Send('pong');
2828
end);

0 commit comments

Comments
 (0)