Skip to content

Commit c450762

Browse files
authored
Merge branch 'master' into dependabot/maven/java/demo/maven-1b7e7d95da
2 parents d898bf7 + fb1a526 commit c450762

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+25114
-25097
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Cream Sandwich).
5555
The [Java demo](https://libphonenumber.appspot.com/) is updated with a slight
5656
delay after the GitHub release.
5757

58-
Last demo update: v9.0.3.
58+
Last demo update: v9.0.4.
5959

6060
Note: Even though the library (main branch/[maven release](https://repo1.maven.org/maven2/com/googlecode/libphonenumber/libphonenumber/8.12.56/))
6161
is at v8.12.57, because of some deployment issues, we were unable to update the

cpp/src/phonenumbers/lite_metadata.cc

Lines changed: 11974 additions & 11980 deletions
Large diffs are not rendered by default.

cpp/src/phonenumbers/metadata.cc

Lines changed: 12742 additions & 12748 deletions
Large diffs are not rendered by default.

cpp/test/phonenumbers/fuzz_matcher.cc

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
*/
1515
#include "phonenumbers/phonenumbermatcher.h"
16+
#include <memory>
1617
#include <string>
1718
#include <vector>
1819
#include <limits>
@@ -78,8 +79,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
7879
// fuzz the matching with the icu adapter
7980
std::string matched_string;
8081
i18n::phonenumbers::ICURegExpFactory factory;
81-
i18n::phonenumbers::RegExp* regexp = factory.CreateRegExp(regexp_string);
82+
std::unique_ptr<i18n::phonenumbers::RegExp> regexp(
83+
factory.CreateRegExp(regexp_string));
8284
regexp->Match(text, full_match, &matched_string);
8385

8486
return 0;
85-
}
87+
}

java/carrier/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<modelVersion>4.0.0</modelVersion>
44
<artifactId>carrier</artifactId>
5-
<version>2.4-SNAPSHOT</version>
5+
<version>2.5-SNAPSHOT</version>
66
<packaging>jar</packaging>
77
<url>https://github.com/google/libphonenumber/</url>
88

99
<parent>
1010
<groupId>com.googlecode.libphonenumber</groupId>
1111
<artifactId>libphonenumber-parent</artifactId>
12-
<version>9.0.4-SNAPSHOT</version>
12+
<version>9.0.5-SNAPSHOT</version>
1313
</parent>
1414

1515
<build>
@@ -81,12 +81,12 @@
8181
<dependency>
8282
<groupId>com.googlecode.libphonenumber</groupId>
8383
<artifactId>libphonenumber</artifactId>
84-
<version>9.0.4-SNAPSHOT</version>
84+
<version>9.0.5-SNAPSHOT</version>
8585
</dependency>
8686
<dependency>
8787
<groupId>com.googlecode.libphonenumber</groupId>
8888
<artifactId>prefixmapper</artifactId>
89-
<version>3.4-SNAPSHOT</version>
89+
<version>3.5-SNAPSHOT</version>
9090
</dependency>
9191
</dependencies>
9292

12 Bytes
Binary file not shown.
18 Bytes
Binary file not shown.
6 Bytes
Binary file not shown.
Binary file not shown.
-53 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)