Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

hi #2338

Closed
wants to merge 20 commits into from
Closed

hi #2338

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
67c1ff1
chore(deps): bump cryptography from 38.0.3 to 39.0.1 in /.kokoro
dependabot[bot] May 10, 2023
18ba7df
Merge pull request #1 from MutluRenegado/dependabot/pip/dot-kokoro/cr…
MutluRenegado May 10, 2023
6edff65
chore(deps): bump certifi from 2022.9.24 to 2022.12.7 in /.kokoro
dependabot[bot] May 10, 2023
69a2ad6
Merge pull request #2 from MutluRenegado/dependabot/pip/dot-kokoro/ce…
MutluRenegado May 10, 2023
3f4615c
chore(deps): bump requests from 2.27.1 to 2.31.0 in /.kokoro
dependabot[bot] May 23, 2023
b8696c2
chore(deps): bump cryptography from 39.0.1 to 41.0.0 in /.kokoro
dependabot[bot] Jun 2, 2023
ac38277
Merge pull request #4 from MutluRenegado/dependabot/pip/dot-kokoro/cr…
MutluRenegado Jun 6, 2023
6aac619
Merge pull request #3 from MutluRenegado/dependabot/pip/dot-kokoro/re…
MutluRenegado Jun 6, 2023
9d51949
chore(deps): bump guava from 31.1-jre to 32.0.0-jre
dependabot[bot] Jun 14, 2023
08eca99
Merge pull request #5 from MutluRenegado/dependabot/maven/com.google.…
MutluRenegado Jul 12, 2023
c625303
chore(deps): bump certifi from 2022.12.7 to 2023.7.22 in /.kokoro
dependabot[bot] Jul 25, 2023
6d2554d
chore(deps): bump cryptography from 41.0.0 to 41.0.3 in /.kokoro
dependabot[bot] Aug 2, 2023
2c0d238
Merge pull request #8 from MutluRenegado/dependabot/pip/dot-kokoro/cr…
MutluRenegado Aug 6, 2023
c3b172c
Create generator-generic-ossf-slsa3-publish.yml
MutluRenegado Aug 6, 2023
b3e1188
Create codeql.yml
MutluRenegado Aug 6, 2023
f326745
Merge pull request #7 from MutluRenegado/dependabot/pip/dot-kokoro/ce…
MutluRenegado Sep 5, 2023
2ac3d59
Merge pull request #10 from MutluRenegado/MutluRenegado-patch-2
MutluRenegado Sep 5, 2023
1238347
chore(main): release 2.1.0
release-please[bot] Sep 5, 2023
fc4078a
Merge pull request #11 from MutluRenegado/release-please--branches--main
MutluRenegado Oct 2, 2023
ee64c27
Merge pull request #9 from MutluRenegado/MutluRenegado-patch-1
MutluRenegado Oct 15, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
82 changes: 82 additions & 0 deletions .github/workflows/codeql.yml
@@ -0,0 +1,82 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

on:
push:
branches: [ "main" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "main" ]
schedule:
- cron: '23 8 * * 4'

jobs:
analyze:
name: Analyze
# Runner size impacts CodeQL analysis time. To learn more, please see:
# - https://gh.io/recommended-hardware-resources-for-running-codeql
# - https://gh.io/supported-runners-and-hardware-resources
# - https://gh.io/using-larger-runners
# Consider using larger runners for possible analysis time improvements.
runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }}
timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }}
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'java', 'python' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby', 'swift' ]
# Use only 'java' to analyze code written in Java, Kotlin or both
# Use only 'javascript' to analyze code written in JavaScript, TypeScript or both
# Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support

steps:
- name: Checkout repository
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.

# For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality


# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2

# ℹ️ Command-line programs to run using the OS shell.
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun

# If the Autobuild fails above, remove it and uncomment the following three lines.
# modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance.

# - run: |
# echo "Run, Build Application using script"
# ./location_of_script_within_repo/buildscript.sh

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"
66 changes: 66 additions & 0 deletions .github/workflows/generator-generic-ossf-slsa3-publish.yml
@@ -0,0 +1,66 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

# This workflow lets you generate SLSA provenance file for your project.
# The generation satisfies level 3 for the provenance requirements - see https://slsa.dev/spec/v0.1/requirements
# The project is an initiative of the OpenSSF (openssf.org) and is developed at
# https://github.com/slsa-framework/slsa-github-generator.
# The provenance file can be verified using https://github.com/slsa-framework/slsa-verifier.
# For more information about SLSA and how it improves the supply-chain, visit slsa.dev.

name: SLSA generic generator
on:
workflow_dispatch:
release:
types: [created]

jobs:
build:
runs-on: ubuntu-latest
outputs:
digests: ${{ steps.hash.outputs.digests }}

steps:
- uses: actions/checkout@v3

# ========================================================
#
# Step 1: Build your artifacts.
#
# ========================================================
- name: Build artifacts
run: |
# These are some amazing artifacts.
echo "artifact1" > artifact1
echo "artifact2" > artifact2

# ========================================================
#
# Step 2: Add a step to generate the provenance subjects
# as shown below. Update the sha256 sum arguments
# to include all binaries that you generate
# provenance for.
#
# ========================================================
- name: Generate subject for provenance
id: hash
run: |
set -euo pipefail

# List the artifacts the provenance will refer to.
files=$(ls artifact*)
# Generate the subjects (base64 encoded).
echo "hashes=$(sha256sum $files | base64 -w0)" >> "${GITHUB_OUTPUT}"

provenance:
needs: [build]
permissions:
actions: read # To read the workflow path.
id-token: write # To sign the provenance.
contents: write # To add assets to a release.
uses: slsa-framework/slsa-github-generator/.github/workflows/generator_generic_slsa3.yml@v1.4.0
with:
base64-subjects: "${{ needs.build.outputs.digests }}"
upload-assets: true # Optional: Upload to a new release
6 changes: 3 additions & 3 deletions .kokoro/requirements.in
Expand Up @@ -2,7 +2,7 @@ gcp-docuploader==0.6.3
google-crc32c==1.3.0
googleapis-common-protos==1.56.3
gcp-releasetool==1.9.1
cryptography==38.0.3
cryptography==41.0.3
cachetools==4.2.4
cffi==1.15.1
jeepney==0.7.1
Expand All @@ -16,8 +16,8 @@ pyparsing==3.0.9
pycparser==2.21
pyperclip==1.8.2
python-dateutil==2.8.2
requests==2.27.1
certifi==2022.9.24
requests==2.31.0
certifi==2023.7.22
importlib-metadata==4.8.3
zipp==3.6.0
google_api_core==2.8.2
Expand Down
63 changes: 30 additions & 33 deletions .kokoro/requirements.txt
Expand Up @@ -16,9 +16,9 @@ cachetools==4.2.4 \
# via
# -r requirements.in
# google-auth
certifi==2022.9.24 \
--hash=sha256:0d9c601124e5a6ba9712dbc60d9c53c21e34f5f641fe83002317394311bdce14 \
--hash=sha256:90c1a32f1d68f940488354e36370f6cca89f0f106db09518524c88d6ed83f382
certifi==2023.7.22 \
--hash=sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082 \
--hash=sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9
# via
# -r requirements.in
# requests
Expand Down Expand Up @@ -104,33 +104,30 @@ colorlog==6.7.0 \
--hash=sha256:0d33ca236784a1ba3ff9c532d4964126d8a2c44f1f0cb1d2b0728196f512f662 \
--hash=sha256:bd94bd21c1e13fac7bd3153f4bc3a7dc0eb0974b8bc2fdf1a989e474f6e582e5
# via gcp-docuploader
cryptography==38.0.3 \
--hash=sha256:068147f32fa662c81aebab95c74679b401b12b57494872886eb5c1139250ec5d \
--hash=sha256:06fc3cc7b6f6cca87bd56ec80a580c88f1da5306f505876a71c8cfa7050257dd \
--hash=sha256:25c1d1f19729fb09d42e06b4bf9895212292cb27bb50229f5aa64d039ab29146 \
--hash=sha256:402852a0aea73833d982cabb6d0c3bb582c15483d29fb7085ef2c42bfa7e38d7 \
--hash=sha256:4e269dcd9b102c5a3d72be3c45d8ce20377b8076a43cbed6f660a1afe365e436 \
--hash=sha256:5419a127426084933076132d317911e3c6eb77568a1ce23c3ac1e12d111e61e0 \
--hash=sha256:554bec92ee7d1e9d10ded2f7e92a5d70c1f74ba9524947c0ba0c850c7b011828 \
--hash=sha256:5e89468fbd2fcd733b5899333bc54d0d06c80e04cd23d8c6f3e0542358c6060b \
--hash=sha256:65535bc550b70bd6271984d9863a37741352b4aad6fb1b3344a54e6950249b55 \
--hash=sha256:6ab9516b85bebe7aa83f309bacc5f44a61eeb90d0b4ec125d2d003ce41932d36 \
--hash=sha256:6addc3b6d593cd980989261dc1cce38263c76954d758c3c94de51f1e010c9a50 \
--hash=sha256:728f2694fa743a996d7784a6194da430f197d5c58e2f4e278612b359f455e4a2 \
--hash=sha256:785e4056b5a8b28f05a533fab69febf5004458e20dad7e2e13a3120d8ecec75a \
--hash=sha256:78cf5eefac2b52c10398a42765bfa981ce2372cbc0457e6bf9658f41ec3c41d8 \
--hash=sha256:7f836217000342d448e1c9a342e9163149e45d5b5eca76a30e84503a5a96cab0 \
--hash=sha256:8d41a46251bf0634e21fac50ffd643216ccecfaf3701a063257fe0b2be1b6548 \
--hash=sha256:984fe150f350a3c91e84de405fe49e688aa6092b3525f407a18b9646f6612320 \
--hash=sha256:9b24bcff7853ed18a63cfb0c2b008936a9554af24af2fb146e16d8e1aed75748 \
--hash=sha256:b1b35d9d3a65542ed2e9d90115dfd16bbc027b3f07ee3304fc83580f26e43249 \
--hash=sha256:b1b52c9e5f8aa2b802d48bd693190341fae201ea51c7a167d69fc48b60e8a959 \
--hash=sha256:bbf203f1a814007ce24bd4d51362991d5cb90ba0c177a9c08825f2cc304d871f \
--hash=sha256:be243c7e2bfcf6cc4cb350c0d5cdf15ca6383bbcb2a8ef51d3c9411a9d4386f0 \
--hash=sha256:bfbe6ee19615b07a98b1d2287d6a6073f734735b49ee45b11324d85efc4d5cbd \
--hash=sha256:c46837ea467ed1efea562bbeb543994c2d1f6e800785bd5a2c98bc096f5cb220 \
--hash=sha256:dfb4f4dd568de1b6af9f4cda334adf7d72cf5bc052516e1b2608b683375dd95c \
--hash=sha256:ed7b00096790213e09eb11c97cc6e2b757f15f3d2f85833cd2d3ec3fe37c1722
cryptography==41.0.3 \
--hash=sha256:0d09fb5356f975974dbcb595ad2d178305e5050656affb7890a1583f5e02a306 \
--hash=sha256:23c2d778cf829f7d0ae180600b17e9fceea3c2ef8b31a99e3c694cbbf3a24b84 \
--hash=sha256:3fb248989b6363906827284cd20cca63bb1a757e0a2864d4c1682a985e3dca47 \
--hash=sha256:41d7aa7cdfded09b3d73a47f429c298e80796c8e825ddfadc84c8a7f12df212d \
--hash=sha256:42cb413e01a5d36da9929baa9d70ca90d90b969269e5a12d39c1e0d475010116 \
--hash=sha256:4c2f0d35703d61002a2bbdcf15548ebb701cfdd83cdc12471d2bae80878a4207 \
--hash=sha256:4fd871184321100fb400d759ad0cddddf284c4b696568204d281c902fc7b0d81 \
--hash=sha256:5259cb659aa43005eb55a0e4ff2c825ca111a0da1814202c64d28a985d33b087 \
--hash=sha256:57a51b89f954f216a81c9d057bf1a24e2f36e764a1ca9a501a6964eb4a6800dd \
--hash=sha256:652627a055cb52a84f8c448185922241dd5217443ca194d5739b44612c5e6507 \
--hash=sha256:67e120e9a577c64fe1f611e53b30b3e69744e5910ff3b6e97e935aeb96005858 \
--hash=sha256:6af1c6387c531cd364b72c28daa29232162010d952ceb7e5ca8e2827526aceae \
--hash=sha256:6d192741113ef5e30d89dcb5b956ef4e1578f304708701b8b73d38e3e1461f34 \
--hash=sha256:7efe8041897fe7a50863e51b77789b657a133c75c3b094e51b5e4b5cec7bf906 \
--hash=sha256:84537453d57f55a50a5b6835622ee405816999a7113267739a1b4581f83535bd \
--hash=sha256:8f09daa483aedea50d249ef98ed500569841d6498aa9c9f4b0531b9964658922 \
--hash=sha256:95dd7f261bb76948b52a5330ba5202b91a26fbac13ad0e9fc8a3ac04752058c7 \
--hash=sha256:a74fbcdb2a0d46fe00504f571a2a540532f4c188e6ccf26f1f178480117b33c4 \
--hash=sha256:a983e441a00a9d57a4d7c91b3116a37ae602907a7618b882c8013b5762e80574 \
--hash=sha256:ab8de0d091acbf778f74286f4989cf3d1528336af1b59f3e5d2ebca8b5fe49e1 \
--hash=sha256:aeb57c421b34af8f9fe830e1955bf493a86a7996cc1338fe41b30047d16e962c \
--hash=sha256:ce785cf81a7bdade534297ef9e490ddff800d956625020ab2ec2780a556c313e \
--hash=sha256:d0d651aa754ef58d75cec6edfbd21259d93810b73f6ec246436a21b7841908de
# via
# -r requirements.in
# gcp-releasetool
Expand Down Expand Up @@ -412,9 +409,9 @@ python-dateutil==2.8.2 \
# via
# -r requirements.in
# gcp-releasetool
requests==2.27.1 \
--hash=sha256:68d7c56fd5a8999887728ef304a6d12edc7be74f1cfa47714fc8b414525c9a61 \
--hash=sha256:f22fa1e554c9ddfd16e6e41ac79759e17be9e492b3587efa038054674760e72d
requests==2.31.0 \
--hash=sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f \
--hash=sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1
# via
# -r requirements.in
# gcp-releasetool
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,18 @@
# Changelog

## [2.1.0](https://github.com/MutluRenegado/google-api-java-client/compare/v2.0.1...v2.1.0) (2023-09-05)


### Features

* next release from main branch is 2.1.0 ([#2179](https://github.com/MutluRenegado/google-api-java-client/issues/2179)) ([0b39ce1](https://github.com/MutluRenegado/google-api-java-client/commit/0b39ce1f50a1ccb49519d25d689b76e061791bb5))


### Bug Fixes

* **deps:** update dependency com.google.api-client:google-api-client to v2.0.1 ([#2176](https://github.com/MutluRenegado/google-api-java-client/issues/2176)) ([7cb91f7](https://github.com/MutluRenegado/google-api-java-client/commit/7cb91f70941e6c34b231aa367c7015cd9c0d346d))
* **deps:** update dependency com.google.cloud:libraries-bom to v26.1.4 ([#2177](https://github.com/MutluRenegado/google-api-java-client/issues/2177)) ([0e3be64](https://github.com/MutluRenegado/google-api-java-client/commit/0e3be649b487e933be604022913375ec180e3fc2))

## [2.0.1](https://github.com/googleapis/google-api-java-client/compare/v2.0.0...v2.0.1) (2022-11-05)


Expand Down
2 changes: 1 addition & 1 deletion google-api-client-android/pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client-parent</artifactId>
<version>2.0.2-SNAPSHOT</version><!-- {x-version-update:google-api-client:current} -->
<version>2.1.0</version><!-- {x-version-update:google-api-client:current} -->
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>google-api-client-android</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion google-api-client-appengine/pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client-parent</artifactId>
<version>2.0.2-SNAPSHOT</version><!-- {x-version-update:google-api-client:current} -->
<version>2.1.0</version><!-- {x-version-update:google-api-client:current} -->
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>google-api-client-appengine</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion google-api-client-assembly/pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client-parent</artifactId>
<version>2.0.2-SNAPSHOT</version><!-- {x-version-update:google-api-client:current} -->
<version>2.1.0</version><!-- {x-version-update:google-api-client:current} -->
<relativePath>../pom.xml</relativePath>
</parent>
<groupId>com.google.api-client</groupId>
Expand Down
22 changes: 11 additions & 11 deletions google-api-client-bom/pom.xml
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client-bom</artifactId>
<version>2.0.2-SNAPSHOT</version><!-- {x-version-update:google-api-client:current} -->
<version>2.1.0</version><!-- {x-version-update:google-api-client:current} -->
<packaging>pom</packaging>

<name>Google API Client Library for Java BOM</name>
Expand Down Expand Up @@ -63,53 +63,53 @@
<dependency>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client</artifactId>
<version>2.0.2-SNAPSHOT</version><!-- {x-version-update:google-api-client:current} -->
<version>2.1.0</version><!-- {x-version-update:google-api-client:current} -->
</dependency>
<dependency>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client-android</artifactId>
<version>2.0.2-SNAPSHOT</version><!-- {x-version-update:google-api-client:current} -->
<version>2.1.0</version><!-- {x-version-update:google-api-client:current} -->
</dependency>
<dependency>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client-appengine</artifactId>
<version>2.0.2-SNAPSHOT</version><!-- {x-version-update:google-api-client:current} -->
<version>2.1.0</version><!-- {x-version-update:google-api-client:current} -->
</dependency>
<dependency>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client-assembly</artifactId>
<version>2.0.2-SNAPSHOT</version><!-- {x-version-update:google-api-client:current} -->
<version>2.1.0</version><!-- {x-version-update:google-api-client:current} -->
<type>pom</type>
</dependency>
<dependency>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client-gson</artifactId>
<version>2.0.2-SNAPSHOT</version><!-- {x-version-update:google-api-client:current} -->
<version>2.1.0</version><!-- {x-version-update:google-api-client:current} -->
</dependency>
<dependency>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client-jackson2</artifactId>
<version>2.0.2-SNAPSHOT</version><!-- {x-version-update:google-api-client:current} -->
<version>2.1.0</version><!-- {x-version-update:google-api-client:current} -->
</dependency>
<dependency>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client-java6</artifactId>
<version>2.0.2-SNAPSHOT</version><!-- {x-version-update:google-api-client:current} -->
<version>2.1.0</version><!-- {x-version-update:google-api-client:current} -->
</dependency>
<dependency>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client-protobuf</artifactId>
<version>2.0.2-SNAPSHOT</version><!-- {x-version-update:google-api-client:current} -->
<version>2.1.0</version><!-- {x-version-update:google-api-client:current} -->
</dependency>
<dependency>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client-servlet</artifactId>
<version>2.0.2-SNAPSHOT</version><!-- {x-version-update:google-api-client:current} -->
<version>2.1.0</version><!-- {x-version-update:google-api-client:current} -->
</dependency>
<dependency>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client-xml</artifactId>
<version>2.0.2-SNAPSHOT</version><!-- {x-version-update:google-api-client:current} -->
<version>2.1.0</version><!-- {x-version-update:google-api-client:current} -->
</dependency>
</dependencies>
</dependencyManagement>
Expand Down
2 changes: 1 addition & 1 deletion google-api-client-gson/pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client-parent</artifactId>
<version>2.0.2-SNAPSHOT</version><!-- {x-version-update:google-api-client:current} -->
<version>2.1.0</version><!-- {x-version-update:google-api-client:current} -->
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>google-api-client-gson</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion google-api-client-jackson2/pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client-parent</artifactId>
<version>2.0.2-SNAPSHOT</version><!-- {x-version-update:google-api-client:current} -->
<version>2.1.0</version><!-- {x-version-update:google-api-client:current} -->
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>google-api-client-jackson2</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion google-api-client-java6/pom.xml
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>com.google.api-client</groupId>
<artifactId>google-api-client-parent</artifactId>
<version>2.0.2-SNAPSHOT</version><!-- {x-version-update:google-api-client:current} -->
<version>2.1.0</version><!-- {x-version-update:google-api-client:current} -->
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>google-api-client-java6</artifactId>
Expand Down