Skip to content
This repository was archived by the owner on Apr 26, 2023. It is now read-only.

Commit e870410

Browse files
committed
Merge pull request #314 from Esri/1.1.0-release
1.1.0 release
2 parents 763fbb5 + 51e89e8 commit e870410

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5-
## [1.1.0]
5+
## [1.1.0] - 2015-11-05
66

77
### Added
88
- Support for 10.3 tokens

DotNet/proxy.ashx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* DotNet proxy client.
55
*
6-
* Version 1.1.0-beta
6+
* Version 1.1.0
77
* See https://github.com/Esri/resource-proxy for more information.
88
*
99
*/
@@ -20,7 +20,7 @@ using System.Text.RegularExpressions;
2020

2121
public class proxy : IHttpHandler {
2222

23-
private static String version = "1.1.0-beta";
23+
private static String version = "1.1.0";
2424

2525
class RateMeter {
2626
double _rate; //internal rate is stored in requests per second

Java/proxy.jsp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ java.text.SimpleDateFormat" %>
3535
*
3636
* JSP proxy client
3737
*
38-
* Version 1.1.0-beta
38+
* Version 1.1.0
3939
* See https://github.com/Esri/resource-proxy for more information.
4040
*
4141
----------------------------------------------------------- -->
4242

43-
<%! final String version = "1.1.0-beta"; %>
43+
<%! final String version = "1.1.0"; %>
4444

4545
<%!
4646
public static final class DataValidUtil {

PHP/proxy.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
/**
44
* PHP Proxy Client
55
*
6-
* Version 1.1.0-beta
6+
* Version 1.1.0
77
* See https://github.com/Esri/resource-proxy for more information.
88
*
99
*/
1010

11-
$version = "1.1.0-beta";
11+
$version = "1.1.0";
1212

1313
error_reporting(0);
1414

0 commit comments

Comments
 (0)