Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP curl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP curl
Commits
62fdf8ea
Commit
62fdf8ea
authored
19 years ago
by
Daniel Stenberg
Browse files
Options
Downloads
Patches
Plain Diff
we all the next version 7.15.0 due to the new TFTP support
parent
d3569a35
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
RELEASE-NOTES
+3
-2
3 additions, 2 deletions
RELEASE-NOTES
include/curl/curlver.h
+16
-13
16 additions, 13 deletions
include/curl/curlver.h
maketgz
+0
-1
0 additions, 1 deletion
maketgz
with
19 additions
and
16 deletions
RELEASE-NOTES
+
3
−
2
View file @
62fdf8ea
Curl and libcurl 7.1
4.2
Curl and libcurl 7.1
5.0
Public curl release number: 90
Releases counted from the very beginning: 117
...
...
@@ -16,6 +16,7 @@ This release includes the following changes:
This release includes the following bugfixes:
o -z over FTP now considers equal timestamps "not modified since"
o Weird characters removed from the configure script
o Fixed time zone offsets for MEST and CEST for the time parser
o HTTP Content-Range header parser crash
...
...
@@ -39,6 +40,6 @@ This release would not have looked like this without help, code, reports and
advice from friends like these:
o John Kelly, Nicolas Franois, Scott Davis, Ben Madsen, Dmitry Bartsevich,
David Yan, Michael Wallner, Domenico Andreoli
David Yan, Michael Wallner, Domenico Andreoli
, Darryl House
Thanks! (and sorry if I forgot to mention someone)
This diff is collapsed.
Click to expand it.
include/curl/curlver.h
+
16
−
13
View file @
62fdf8ea
...
...
@@ -28,7 +28,13 @@
/* This is the version number of the libcurl package from which this header
file origins: */
#define LIBCURL_VERSION "7.14.2-CVS"
#define LIBCURL_VERSION "7.15.0-CVS"
/* The numeric version number is also available "in parts" by using these
defines: */
#define LIBCURL_VERSION_MAJOR 7
#define LIBCURL_VERSION_MINOR 15
#define LIBCURL_VERSION_PATCH 0
/* This is the numeric version of the libcurl version number, meant for easier
parsing and comparions by programs. The LIBCURL_VERSION_NUM define will
...
...
@@ -37,19 +43,16 @@
0xXXYYZZ
Where XX, YY and ZZ are the main version, release and patch numbers in
hexadecimal. All three numbers are always represented using two digits. 1.2
would appear as "0x010200" while version 9.11.7 appears as "0x090b07".
hexadecimal (using 8 bits each). All three numbers are always represented
using two digits. 1.2 would appear as "0x010200" while version 9.11.7
appears as "0x090b07".
This 6-digit hexadecimal number does not show pre-release number,
and it is
always a greater number in a more recent release. It makes
comparisons with
greater than and less than work.
This 6-digit
(24 bits)
hexadecimal number does not show pre-release number,
and it is
always a greater number in a more recent release. It makes
comparisons with
greater than and less than work.
*/
#define LIBCURL_VERSION_NUM 0x070e02
/* The numeric version number is also available "in parts" by using these
defines: */
#define LIBCURL_VERSION_MAJOR 7
#define LIBCURL_VERSION_MINOR 14
#define LIBCURL_VERSION_PATCH 2
#define LIBCURL_VERSION_NUM ((LIBCURL_VERSION_MAJOR << 16) | \
(LIBCURL_VERSION_MINOR << 8) | \
LIBCURL_VERSION_PATCH)
#endif
/* __CURL_CURLVER_H */
This diff is collapsed.
Click to expand it.
maketgz
+
0
−
1
View file @
62fdf8ea
...
...
@@ -25,7 +25,6 @@ CHEADER=src/version.h
# Replace version number in header file:
sed
-e
's/^#define LIBCURL_VERSION .*/#define LIBCURL_VERSION "'
$libversion
'"/g'
\
-e
's/^#define LIBCURL_VERSION_NUM .*/#define LIBCURL_VERSION_NUM 0x'
$numeric
'/g'
\
-e
's/^#define LIBCURL_VERSION_MAJOR .*/#define LIBCURL_VERSION_MAJOR '
$major
'/g'
\
-e
's/^#define LIBCURL_VERSION_MINOR .*/#define LIBCURL_VERSION_MINOR '
$minor
'/g'
\
-e
's/^#define LIBCURL_VERSION_PATCH .*/#define LIBCURL_VERSION_PATCH '
$patch
'/g'
\
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment