Skip to content

Commit 7635906

Browse files
committed
Merge pull request contiki-ng#402 from adamdunkels/release-2-7
Bumped the version number from Contiki 2.6 to Contiki 2.7
2 parents ce0b2ca + c489d8d commit 7635906

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
http_user_agent_fields "Connection: close\r\nUser-Agent: Contiki/2.6 (; http://www.contiki-os.org/)\r\n\r\n"
1+
http_user_agent_fields "Connection: close\r\nUser-Agent: Contiki/2.7 (; http://www.contiki-os.org/)\r\n\r\n"
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
const char http_user_agent_fields[78] =
2-
/* "Connection: close\r\nUser-Agent: Contiki/2.6 (; http://www.contiki-os.org/)\r\n\r\n" */
3-
{0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0xd, 0xa, 0x55, 0x73, 0x65, 0x72, 0x2d, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x3a, 0x20, 0x43, 0x6f, 0x6e, 0x74, 0x69, 0x6b, 0x69, 0x2f, 0x32, 0x2e, 0x36, 0x20, 0x28, 0x3b, 0x20, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x69, 0x6b, 0x69, 0x2d, 0x6f, 0x73, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x29, 0xd, 0xa, 0xd, 0xa, };
2+
/* "Connection: close\r\nUser-Agent: Contiki/2.7 (; http://www.contiki-os.org/)\r\n\r\n" */
3+
{0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0xd, 0xa, 0x55, 0x73, 0x65, 0x72, 0x2d, 0x41, 0x67, 0x65, 0x6e, 0x74, 0x3a, 0x20, 0x43, 0x6f, 0x6e, 0x74, 0x69, 0x6b, 0x69, 0x2f, 0x32, 0x2e, 0x37, 0x20, 0x28, 0x3b, 0x20, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x69, 0x6b, 0x69, 0x2d, 0x6f, 0x73, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x29, 0xd, 0xa, 0xd, 0xa, };

apps/webserver/http-strings

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ http_index_htm "/index.htm"
1313
http_index_html "/index.html"
1414
http_404_html "/404.html"
1515
http_referer "Referer:"
16-
http_header_200 "HTTP/1.0 200 OK\r\nServer: Contiki/2.6 http://www.contiki-os.org/\r\nConnection: close\r\n"
17-
http_header_404 "HTTP/1.0 404 Not found\r\nServer: Contiki/2.6 http://www.contiki-os.org/\r\nConnection: close\r\n"
16+
http_header_200 "HTTP/1.0 200 OK\r\nServer: Contiki/2.7 http://www.contiki-os.org/\r\nConnection: close\r\n"
17+
http_header_404 "HTTP/1.0 404 Not found\r\nServer: Contiki/2.7 http://www.contiki-os.org/\r\nConnection: close\r\n"
1818
http_content_type_plain "Content-type: text/plain\r\n\r\n"
1919
http_content_type_html "Content-type: text/html\r\n\r\n"
2020
http_content_type_css "Content-type: text/css\r\n\r\n"

apps/webserver/http-strings.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ const char http_referer[9] =
4444
/* "Referer:" */
4545
{0x52, 0x65, 0x66, 0x65, 0x72, 0x65, 0x72, 0x3a, };
4646
const char http_header_200[85] =
47-
/* "HTTP/1.0 200 OK\r\nServer: Contiki/2.6 http://www.contiki-os.org/\r\nConnection: close\r\n" */
48-
{0x48, 0x54, 0x54, 0x50, 0x2f, 0x31, 0x2e, 0x30, 0x20, 0x32, 0x30, 0x30, 0x20, 0x4f, 0x4b, 0xd, 0xa, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x3a, 0x20, 0x43, 0x6f, 0x6e, 0x74, 0x69, 0x6b, 0x69, 0x2f, 0x32, 0x2e, 0x36, 0x20, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x69, 0x6b, 0x69, 0x2d, 0x6f, 0x73, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0xd, 0xa, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0xd, 0xa, };
47+
/* "HTTP/1.0 200 OK\r\nServer: Contiki/2.7 http://www.contiki-os.org/\r\nConnection: close\r\n" */
48+
{0x48, 0x54, 0x54, 0x50, 0x2f, 0x31, 0x2e, 0x30, 0x20, 0x32, 0x30, 0x30, 0x20, 0x4f, 0x4b, 0xd, 0xa, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x3a, 0x20, 0x43, 0x6f, 0x6e, 0x74, 0x69, 0x6b, 0x69, 0x2f, 0x32, 0x2e, 0x37, 0x20, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x69, 0x6b, 0x69, 0x2d, 0x6f, 0x73, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0xd, 0xa, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0xd, 0xa, };
4949
const char http_header_404[92] =
50-
/* "HTTP/1.0 404 Not found\r\nServer: Contiki/2.6 http://www.contiki-os.org/\r\nConnection: close\r\n" */
51-
{0x48, 0x54, 0x54, 0x50, 0x2f, 0x31, 0x2e, 0x30, 0x20, 0x34, 0x30, 0x34, 0x20, 0x4e, 0x6f, 0x74, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0xd, 0xa, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x3a, 0x20, 0x43, 0x6f, 0x6e, 0x74, 0x69, 0x6b, 0x69, 0x2f, 0x32, 0x2e, 0x36, 0x20, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x69, 0x6b, 0x69, 0x2d, 0x6f, 0x73, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0xd, 0xa, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0xd, 0xa, };
50+
/* "HTTP/1.0 404 Not found\r\nServer: Contiki/2.7 http://www.contiki-os.org/\r\nConnection: close\r\n" */
51+
{0x48, 0x54, 0x54, 0x50, 0x2f, 0x31, 0x2e, 0x30, 0x20, 0x34, 0x30, 0x34, 0x20, 0x4e, 0x6f, 0x74, 0x20, 0x66, 0x6f, 0x75, 0x6e, 0x64, 0xd, 0xa, 0x53, 0x65, 0x72, 0x76, 0x65, 0x72, 0x3a, 0x20, 0x43, 0x6f, 0x6e, 0x74, 0x69, 0x6b, 0x69, 0x2f, 0x32, 0x2e, 0x37, 0x20, 0x68, 0x74, 0x74, 0x70, 0x3a, 0x2f, 0x2f, 0x77, 0x77, 0x77, 0x2e, 0x63, 0x6f, 0x6e, 0x74, 0x69, 0x6b, 0x69, 0x2d, 0x6f, 0x73, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0xd, 0xa, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x3a, 0x20, 0x63, 0x6c, 0x6f, 0x73, 0x65, 0xd, 0xa, };
5252
const char http_content_type_plain[29] =
5353
/* "Content-type: text/plain\r\n\r\n" */
5454
{0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x2d, 0x74, 0x79, 0x70, 0x65, 0x3a, 0x20, 0x74, 0x65, 0x78, 0x74, 0x2f, 0x70, 0x6c, 0x61, 0x69, 0x6e, 0xd, 0xa, 0xd, 0xa, };

core/contiki-version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
#define __CONTIKI_VERSION__
3636

3737
#ifndef CONTIKI_VERSION_STRING
38-
#define CONTIKI_VERSION_STRING "Contiki 2.6"
38+
#define CONTIKI_VERSION_STRING "Contiki 2.7"
3939
#endif /* CONTIKI_VERSION_STRING */
4040

4141
#endif /* __CONTIKI_VERSION__ */

doc/Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ DOXYFILE_ENCODING = UTF-8
2626
# identify the project. Note that if you do not use Doxywizard you need
2727
# to put quotes around the project name if it contains spaces.
2828

29-
PROJECT_NAME = "Contiki 2.6"
29+
PROJECT_NAME = "Contiki 2.7"
3030

3131
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
3232
# This could be handy for archiving the generated documentation or

tools/release-tools/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ Release tools
44
The tools/release-tools directory contains files for building and testing
55
Contiki releases. To compile a release of Contiki, run
66

7-
make RELEASE=2.6
7+
make RELEASE=2.7
88

9-
for Contiki 2.6. It is also possible to compile a release of a specific git tag
9+
for Contiki 2.7. It is also possible to compile a release of a specific git tag
1010
or other non-numbered version, such as the current git HEAD, like this:
1111

1212
make TAG=HEAD

0 commit comments

Comments
 (0)