├── images ├── new-update.png └── preferences-menu.png ├── docs └── contributing.md ├── temp-macos-install-zulu-jre.sh ├── README.md ├── LICENSE └── releases.md /images/new-update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/agi-dev-releases/HEAD/images/new-update.png -------------------------------------------------------------------------------- /images/preferences-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/agi-dev-releases/HEAD/images/preferences-menu.png -------------------------------------------------------------------------------- /docs/contributing.md: -------------------------------------------------------------------------------- 1 | # How to Contribute 2 | 3 | We'd love to accept your patches and contributions to this project. There are 4 | just a few small guidelines you need to follow. 5 | 6 | ## Contributor License Agreement 7 | 8 | Contributions to this project must be accompanied by a Contributor License 9 | Agreement. You (or your employer) retain the copyright to your contribution; 10 | this simply gives us permission to use and redistribute your contributions as 11 | part of the project. Head over to to see 12 | your current agreements on file or to sign a new one. 13 | 14 | You generally only need to submit a CLA once, so if you've already submitted one 15 | (even if it was for a different project), you probably don't need to do it 16 | again. 17 | 18 | ## Code reviews 19 | 20 | All submissions, including submissions by project members, require review. We 21 | use GitHub pull requests for this purpose. Consult 22 | [GitHub Help](https://help.github.com/articles/about-pull-requests/) for more 23 | information on using pull requests. 24 | 25 | ## Community Guidelines 26 | 27 | This project follows [Google's Open Source Community 28 | Guidelines](https://opensource.google/conduct/). 29 | -------------------------------------------------------------------------------- /temp-macos-install-zulu-jre.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Copyright (C) 2020 Google Inc. 4 | # 5 | # Licensed under the Apache License, Version 2.0 (the "License"); 6 | # you may not use this file except in compliance with the License. 7 | # You may obtain a copy of the License at 8 | # 9 | # http://www.apache.org/licenses/LICENSE-2.0 10 | # 11 | # Unless required by applicable law or agreed to in writing, software 12 | # distributed under the License is distributed on an "AS IS" BASIS, 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14 | # See the License for the specific language governing permissions and 15 | # limitations under the License. 16 | 17 | set -e 18 | set -x 19 | 20 | # Path to AGI install 21 | agipath="/Applications/AGI.app/Contents/MacOS" 22 | 23 | # Sanity check 24 | if [ -d ${agipath}/jre ]; then 25 | echo "Error: please remove the ${agipath}/jre directory before running this script" 26 | exit 1 27 | fi 28 | 29 | # Download and install Azul Zulu JRE 11 30 | curl -LO https://cdn.azul.com/zulu/bin/zulu11.39.15-ca-jre11.0.7-macosx_x64.zip 31 | echo "d5f40f9a221816e3f4c3219ac658d184d8cb4f99c7a1fb19f4ffc45d88bafd73 zulu11.39.15-ca-jre11.0.7-macosx_x64.zip" | shasum -c 32 | unzip zulu11.39.15-ca-jre11.0.7-macosx_x64.zip 33 | rm zulu11.39.15-ca-jre11.0.7-macosx_x64.zip 34 | mv zulu11.39.15-ca-jre11.0.7-macosx_x64/zulu-11.jre/Contents/Home ${agipath}/jre 35 | rm -rf zulu11.39.15-ca-jre11.0.7-macosx_x64 36 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # agi-dev-releases 2 | 3 | This repository is used as a placeholder for [Android GPU Inspector](https://gpuinspector.dev) dev-releases. 4 | 5 | The [latest **stable** release of AGI is accessible here](https://github.com/google/agi/releases/latest). 6 | 7 | Dev-releases are **unstable** preview releases for developers, they are NOT 8 | stable releases. The [release.md](releases.md) file lists dev-releases. 9 | 10 | The [latest **unstable** dev-release is available 11 | here](https://github.com/google/agi-dev-releases/releases/latest). 12 | 13 | ## How to know the version of an installed AGI 14 | 15 | Start AGI, then go the `Help` menu and select `About`: the pop-up window 16 | contains the version string, which looks like: 17 | 18 | ``` 19 | 0.10.0:dev-20200730-74a5de24d813178531c46cafaecb68d12d384b85 20 | ``` 21 | 22 | Alternatively, you can use the `gapit -version` command: 23 | 24 | ``` 25 | $ ./path/to/agi/gapit -version 26 | GAPIT version 0.10.0:dev-20200730-74a5de24d813178531c46cafaecb68d12d384b85 27 | ``` 28 | 29 | ## How to get notifications for new dev-releases 30 | 31 | Launch AGI, go to the `Edit -> Preferences` menu, and tick both “Automatically 32 | check for AGI updates” and “Include unstable developer releases” options: 33 | 34 | ![alt text](https://github.com/google/agi-dev-releases/raw/master/images/preferences-menu.png "Screenshot of AGI preferences menu") 35 | 36 | Make sure to **relaunch AGI**. 37 | 38 | When a new dev-release is published, a "New update available" notification will 39 | be displayed on the startup screen: 40 | 41 | ![alt text](https://github.com/google/agi-dev-releases/raw/master/images/new-update.png "Screenshot of AGI startup screen with 'New update available' notification") 42 | 43 | Clicking on this notification will bring you to the latest dev-release page on 44 | GitHub from where you can download the build relevant to your platform. 45 | 46 | --- 47 | 48 | ## (Obsolete) Temporary: work around notarization issues on macOS releases 49 | 50 | > :warning: This work around was needed for dev-releases between 51 | > v0.10.0-dev-20200527 and v0.10.0-dev-20200612 52 | 53 | We are currently dealing with issues related to macOS notarization. As a 54 | temporary work around, we stop embedding a JRE in our macOS releases. We 55 | recommend to install Azul Zulu community JRE 11, which seems to work fine with 56 | AGI on macOS. 57 | 58 | > :warning: This JRE is offered by a third-party, please read [Azul Zulu 59 | > community terms of 60 | > use](https://www.azul.com/products/zulu-and-zulu-enterprise/zulu-terms-of-use/) 61 | > before using it. 62 | 63 | You can obtain the Azul Zulu JRE 11 and install it in AGI folder with the 64 | following commands, also provided as the `temp-macos-install-zulu-jre.sh` helper 65 | script: 66 | 67 | ```sh 68 | # Path to AGI install 69 | agipath="/Applications/AGI.app/Contents/MacOS" 70 | 71 | # Sanity check 72 | if [ -d ${agipath}/jre ] ; then echo "Error: please remove the ${agipath}/jre directory before running this script" ; exit 1 ; fi 73 | 74 | # Download and install Azul Zulu JRE 11 75 | curl -LO https://cdn.azul.com/zulu/bin/zulu11.39.15-ca-jre11.0.7-macosx_x64.zip 76 | echo "d5f40f9a221816e3f4c3219ac658d184d8cb4f99c7a1fb19f4ffc45d88bafd73 zulu11.39.15-ca-jre11.0.7-macosx_x64.zip" | shasum -c 77 | unzip zulu11.39.15-ca-jre11.0.7-macosx_x64.zip 78 | mv zulu11.39.15-ca-jre11.0.7-macosx_x64/zulu-11.jre/Contents/Home ${agipath}/jre 79 | ``` 80 | 81 | --- 82 | 83 | This is not an officially supported Google product. 84 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright [yyyy] [name of copyright owner] 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. 203 | -------------------------------------------------------------------------------- /releases.md: -------------------------------------------------------------------------------- 1 | # Android GPU Inspector (AGI) dev releases 2 | 3 | | Version | Commit | 4 | |---------|--------| 5 | | [v0.9.0-dev-20200224](https://github.com/google/agi-dev-releases/releases/tag/v0.9.0-dev-20200224) | [f969140cf707632f3a8012625de59871f53632b1](https://github.com/google/agi/commit/f969140cf707632f3a8012625de59871f53632b1) | 6 | | [v0.9.0-dev-20200302](https://github.com/google/agi-dev-releases/releases/tag/v0.9.0-dev-20200302) | [e9894e3998e5eebce9fae7f6c14d0bcb319e4706](https://github.com/google/agi/commit/e9894e3998e5eebce9fae7f6c14d0bcb319e4706) | 7 | | [v0.9.0-dev-20200304](https://github.com/google/agi-dev-releases/releases/tag/v0.9.0-dev-20200304) | [cdeca93262ae2d065ffea13d377d48a46fd3a66f](https://github.com/google/agi/commit/cdeca93262ae2d065ffea13d377d48a46fd3a66f) | 8 | | [v0.9.0-dev-20200306](https://github.com/google/agi-dev-releases/releases/tag/v0.9.0-dev-20200306) | [3095c02b9d34c9fc4680613b7d5b2225b4acc076](https://github.com/google/agi/commit/3095c02b9d34c9fc4680613b7d5b2225b4acc076) | 9 | | [v0.9.0-dev-20200309](https://github.com/google/agi-dev-releases/releases/tag/v0.9.0-dev-20200309) | [6db5a755712b7a5417610fcb432201980d3645e3](https://github.com/google/agi/commit/6db5a755712b7a5417610fcb432201980d3645e3) | 10 | | [v0.9.0-dev-20200310](https://github.com/google/agi-dev-releases/releases/tag/v0.9.0-dev-20200310) | [76fbf77485e5a529654a9db80b121299cec96ce9](https://github.com/google/agi/commit/76fbf77485e5a529654a9db80b121299cec96ce9) | 11 | | [v0.9.0-dev-20200311](https://github.com/google/agi-dev-releases/releases/tag/v0.9.0-dev-20200311) | [d8ad6093a1e92f3979030e540fd6846c2b31d69c](https://github.com/google/agi/commit/d8ad6093a1e92f3979030e540fd6846c2b31d69c) | 12 | | [v0.9.0-dev-20200313](https://github.com/google/agi-dev-releases/releases/tag/v0.9.0-dev-20200313) | [9d36fb42990296496545e51f1c1b7b9475399a79](https://github.com/google/agi/commit/9d36fb42990296496545e51f1c1b7b9475399a79) | 13 | | [v0.9.0-dev-20200317](https://github.com/google/agi-dev-releases/releases/tag/v0.9.0-dev-20200317) | [acf6d79fdf8aa829c15805e8d09c02654c849734](https://github.com/google/agi/commit/acf6d79fdf8aa829c15805e8d09c02654c849734) | 14 | | [v0.9.0-dev-20200318](https://github.com/google/agi-dev-releases/releases/tag/v0.9.0-dev-20200318) | [72a1acb36647108b5e9ff827865a5f90dee80fff](https://github.com/google/agi/commit/72a1acb36647108b5e9ff827865a5f90dee80fff) | 15 | | [v0.9.0-dev-20200319](https://github.com/google/agi-dev-releases/releases/tag/v0.9.0-dev-20200319) | [e5310ddaf16feef09692e4394b98989c4e8200ec](https://github.com/google/agi/commit/e5310ddaf16feef09692e4394b98989c4e8200ec) | 16 | | [v0.9.0-dev-20200320](https://github.com/google/agi-dev-releases/releases/tag/v0.9.0-dev-20200320) | [57f0ff9d44748b3f9db9f44e78a5f7ada16ef8bf](https://github.com/google/agi/commit/57f0ff9d44748b3f9db9f44e78a5f7ada16ef8bf) | 17 | | [v0.9.0-dev-20200326](https://github.com/google/agi-dev-releases/releases/tag/v0.9.0-dev-20200326) | [856d04c43e6ee86c7834693f3c6e9d7624869c0e](https://github.com/google/agi/commit/856d04c43e6ee86c7834693f3c6e9d7624869c0e) | 18 | | [v0.9.0-dev-20200327](https://github.com/google/agi-dev-releases/releases/tag/v0.9.0-dev-20200327) | [6a83854c3427dbf3f63f3769c1ed232c119915d4](https://github.com/google/agi/commit/6a83854c3427dbf3f63f3769c1ed232c119915d4) | 19 | | [v0.9.0-dev-20200331](https://github.com/google/agi-dev-releases/releases/tag/v0.9.0-dev-20200331) | [621013ce21b2b3fa13e8936172c7a2dd67c0bd81](https://github.com/google/agi/commit/621013ce21b2b3fa13e8936172c7a2dd67c0bd81) | 20 | | [v0.9.0-dev-20200401](https://github.com/google/agi-dev-releases/releases/tag/v0.9.0-dev-20200401) | [82c53d540591cd8da47992336f21e847b1d93e33](https://github.com/google/agi/commit/82c53d540591cd8da47992336f21e847b1d93e33) | 21 | | [v0.10.0-dev-20200401](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200401) | [c03ac01b45f2d10eb17d45cf4e2df4ec4366beb3](https://github.com/google/agi/commit/c03ac01b45f2d10eb17d45cf4e2df4ec4366beb3) | 22 | | [v0.10.0-dev-20200406](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200406) | [6f98dab9675c5b64b9987557eb9e2f002452b91b](https://github.com/google/agi/commit/6f98dab9675c5b64b9987557eb9e2f002452b91b) | 23 | | [v0.10.0-dev-20200407](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200407) | [d6f5cc17bf1ba7832f08116c4eb1db2810e8e104](https://github.com/google/agi/commit/d6f5cc17bf1ba7832f08116c4eb1db2810e8e104) | 24 | | [v0.10.0-dev-20200408](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200408) | [51407f07b1fc3a71b77c53b5b7d54249a8af0bcc](https://github.com/google/agi/commit/51407f07b1fc3a71b77c53b5b7d54249a8af0bcc) | 25 | | [v0.10.0-dev-20200409](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200409) | [c391b37474a2c4259bef3f82d33ab1bb3d05ce8a](https://github.com/google/agi/commit/c391b37474a2c4259bef3f82d33ab1bb3d05ce8a) | 26 | | [v0.10.0-dev20200415](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev20200415) | [ee37c8663c19bec31d9dc7a59910bdd293b8520b](https://github.com/google/agi/commit/ee37c8663c19bec31d9dc7a59910bdd293b8520b) | 27 | | [v0.10.0-dev20200417](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev20200417) | [24cfc39d9588f1af81c219f3731db7b02121171c](https://github.com/google/agi/commit/24cfc39d9588f1af81c219f3731db7b02121171c) | 28 | | [v0.10.0-dev-20200421](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200421) | [f3c0f79cf544ec0018583c3fbec140c70dcb530f](https://github.com/google/agi/commit/f3c0f79cf544ec0018583c3fbec140c70dcb530f) | 29 | | [v.0.10.0-dev20200423](https://github.com/google/agi-dev-releases/releases/tag/v.0.10.0-dev20200423) | [49159c4dc681e3b9afdbf9454917fd5237ff64dc](https://github.com/google/agi/commit/49159c4dc681e3b9afdbf9454917fd5237ff64dc) | 30 | | [v0.10.0-dev-20200429](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200429) | [51e04cae9e7e8f532f54985206fd456c5ee9f83c](https://github.com/google/agi/commit/51e04cae9e7e8f532f54985206fd456c5ee9f83c) | 31 | | [v0.10.0-dev-20200430](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200430) | [c37c9ec4fd8124be6997c6a4d9531cd12684c4ff](https://github.com/google/agi/commit/c37c9ec4fd8124be6997c6a4d9531cd12684c4ff) | 32 | | [v0.10.0-dev-20200504](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200504) | [996feb47d29c7bfd525bfe3d1499ad9356f9b1cd](https://github.com/google/agi/commit/996feb47d29c7bfd525bfe3d1499ad9356f9b1cd) | 33 | | [v.0.10.0-dev-20200507](https://github.com/google/agi-dev-releases/releases/tag/v.0.10.0-dev-20200507) | [b45e793c5118d675900b77eda3241eddecbfa67f](https://github.com/google/agi/commit/b45e793c5118d675900b77eda3241eddecbfa67f) | 34 | | [v.0.10.0-dev-20200511](https://github.com/google/agi-dev-releases/releases/tag/v.0.10.0-dev-20200511) | [ee5db2f48a72b9d9bac24541d61c6f40a921b946](https://github.com/google/agi/commit/ee5db2f48a72b9d9bac24541d61c6f40a921b946) | 35 | | [v.0.10.0-dev-20200513](https://github.com/google/agi-dev-releases/releases/tag/v.0.10.0-dev-20200513) | [d7030d07098f0ad6dfb803035a0a8286ecceb2de](https://github.com/google/agi/commit/d7030d07098f0ad6dfb803035a0a8286ecceb2de) | 36 | | [v.0.10.0-dev-20200514](https://github.com/google/agi-dev-releases/releases/tag/v.0.10.0-dev-20200514) | [65fa45c02cb738c1dac28cea9c970eae9e365775](https://github.com/google/agi/commit/65fa45c02cb738c1dac28cea9c970eae9e365775) | 37 | | [v.0.10.0-dev-20200515](https://github.com/google/agi-dev-releases/releases/tag/v.0.10.0-dev-20200515) | [d12275a5e77586a86caad7c6797568a575d1932e](https://github.com/google/agi/commit/d12275a5e77586a86caad7c6797568a575d1932e) | 38 | | [v0.10.0-dev-20200527](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200527) | [76824a016ade8773722fb6a442f2bcddecf7b212](https://github.com/google/agi/commit/76824a016ade8773722fb6a442f2bcddecf7b212) | 39 | | [v0.10.0-dev-20200601](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200601) | [d228eb16f5b4279e0d189b603a5dca313f49afd0](https://github.com/google/agi/commit/d228eb16f5b4279e0d189b603a5dca313f49afd0) | 40 | | [v0.10.0-dev-20200602](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200602) | [90114ce052139d4bf1de77590ac9b88739b7574d](https://github.com/google/agi/commit/90114ce052139d4bf1de77590ac9b88739b7574d) | 41 | | [v0.10.0-dev-20200610](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200610) | [b79cc1623e19b84cbc2796849d679a8215c45406](https://github.com/google/agi/commit/b79cc1623e19b84cbc2796849d679a8215c45406) | 42 | | [v0.10.0-dev-20200612](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200612) | [25df1a736c96ec06d40162d071c122331fe874bb](https://github.com/google/agi/commit/25df1a736c96ec06d40162d071c122331fe874bb) | 43 | | [v.0.10.0-dev-20200617](https://github.com/google/agi-dev-releases/releases/tag/v.0.10.0-dev-20200617) | [0107458cb4efd1f01d6ba91bdc3949bd801151e8](https://github.com/google/agi/commit/0107458cb4efd1f01d6ba91bdc3949bd801151e8) | 44 | | [v0.10.0-dev-20200617](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200617) | [0107458cb4efd1f01d6ba91bdc3949bd801151e8](https://github.com/google/agi/commit/0107458cb4efd1f01d6ba91bdc3949bd801151e8) | 45 | | [v0.10.0-dev-20200618](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200618) | [a33ed8184136895f7afea39a05665146b9a906a8](https://github.com/google/agi/commit/a33ed8184136895f7afea39a05665146b9a906a8) | 46 | | [v0.10.0-dev-20200619](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200619) | [dce5550ab7e4fa09278c0406d746bb5a28478d56](https://github.com/google/agi/commit/dce5550ab7e4fa09278c0406d746bb5a28478d56) | 47 | | [v0.10.0-dev-20200623](https://github.com/google/agi-dev-releases/releases/tag/v0.10-dev-20200623) | [2ef7cf5f15618d31ecc429031a2a8194abba16c8](https://github.com/google/agi/commit/2ef7cf5f15618d31ecc429031a2a8194abba16c8) | 48 | | [v0.10.0-dev-20200624](https://github.com/google/agi-dev-releases/releases/tag/v0.10-dev-20200624) | [57217395dba885c1be740e4af60b2f0393845fb6](https://github.com/google/agi/commit/57217395dba885c1be740e4af60b2f0393845fb6) | 49 | | [v0.10.0-dev-20200626](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200626) | [0027b5494e6fa13ccbf561b58f4d919bd3a190db](https://github.com/google/agi/commit/0027b5494e6fa13ccbf561b58f4d919bd3a190db) | 50 | | [v0.10.0-dev-20200630](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200630) | [9522433163a45a972028c34e31c27de0a428bd03](https://github.com/google/agi/commit/9522433163a45a972028c34e31c27de0a428bd03) | 51 | | [v0.10.0-dev-20200701](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200701) | [6ab56573287b96db2b62daddf2859d57db7e69eb](https://github.com/google/agi/commit/6ab56573287b96db2b62daddf2859d57db7e69eb) | 52 | | [v0.10.0-dev-20200702](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200702) | [ffcead0e9616e3e9488596930d6192f1172cc9a9](https://github.com/google/agi/commit/ffcead0e9616e3e9488596930d6192f1172cc9a9) | 53 | | [v0.10.0-dev-20200706](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200706) | [c498e1bf5def0f90e7d1ea50916322ade5026e03](https://github.com/google/agi/commit/c498e1bf5def0f90e7d1ea50916322ade5026e03) | 54 | | [v0.10.0-dev-20200713](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200713) | [d2e9b4d867650117b49c8ed94fe1e72c2df5960b](https://github.com/google/agi/commit/d2e9b4d867650117b49c8ed94fe1e72c2df5960b) | 55 | | [v0.10.0-dev-20200715](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200715) | [7f17f983efe83ef25f15d9b48217571d6bd8e18c](https://github.com/google/agi/commit/7f17f983efe83ef25f15d9b48217571d6bd8e18c) | 56 | | [v0.10.0-dev-20200716](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200716) | [486f8635f2416aacb649721553083b0388c16188](https://github.com/google/agi/commit/486f8635f2416aacb649721553083b0388c16188) | 57 | | [v0.10.0-dev-20200720](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200720) | [167a8b33ac3fba9802a6df7355a421118f26fbc0](https://github.com/google/agi/commit/167a8b33ac3fba9802a6df7355a421118f26fbc0) | 58 | | [vv.0.10.0-dev20200722-dev-20200722](https://github.com/google/agi-dev-releases/releases/tag/vv.0.10.0-dev20200722-dev-20200722) | [4f5234d0f49e46ff77f0dd6136fd0c5222dcba57](https://github.com/google/agi/commit/4f5234d0f49e46ff77f0dd6136fd0c5222dcba57) | 59 | | [vv.0.10.0-dev-20200724](https://github.com/google/agi-dev-releases/releases/tag/vv.0.10.0-dev-20200724) | [85c5e599f7074d63af055c05b4818ad5d3d8073e](https://github.com/google/agi/commit/85c5e599f7074d63af055c05b4818ad5d3d8073e) | 60 | | [v0.10.0-dev-20200730](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200730) | [74a5de24d813178531c46cafaecb68d12d384b85](https://github.com/google/agi/commit/74a5de24d813178531c46cafaecb68d12d384b85) | 61 | | [v0.10.0-dev-20200731](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200731) | [ce9263ca543b072aead32e2a53156920d096863d](https://github.com/google/agi/commit/ce9263ca543b072aead32e2a53156920d096863d) | 62 | | [v0.10.0-dev-20200803](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200803) | [43bb4aef2081243dddbef8a73292f17e12d6d3cb](https://github.com/google/agi/commit/43bb4aef2081243dddbef8a73292f17e12d6d3cb) | 63 | | [v0.10.0-dev-20200804](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200804) | [9a5009f77529e365f97ba374f8461f50d97a95e2](https://github.com/google/agi/commit/9a5009f77529e365f97ba374f8461f50d97a95e2) | 64 | | [v0.10.0-dev-20200805](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200805) | [1c9f5c36b7953af5e20763e26b82d34040d982c3](https://github.com/google/agi/commit/1c9f5c36b7953af5e20763e26b82d34040d982c3) | 65 | | [v0.10.0-dev-20200806](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200806) | [ff0d137e229946410a5260125b81f9b9b7c4e23e](https://github.com/google/agi/commit/ff0d137e229946410a5260125b81f9b9b7c4e23e) | 66 | | [v0.10.0-dev-20200811](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200811) | [67a9cb159698406f483bfd8040d4c962f6bbb465](https://github.com/google/agi/commit/67a9cb159698406f483bfd8040d4c962f6bbb465) | 67 | | [v.0.10.0-dev-20200813](https://github.com/google/agi-dev-releases/releases/tag/v.0.10.0-dev-20200813) | [67a9cb159698406f483bfd8040d4c962f6bbb465](https://github.com/google/agi/commit/67a9cb159698406f483bfd8040d4c962f6bbb465) | 68 | | [v.0.10.0-dev-20200814](https://github.com/google/agi-dev-releases/releases/tag/v.0.10.0-dev-20200814) | [a3cd86ee8121555116ea5365f6b551b9509f4384](https://github.com/google/agi/commit/a3cd86ee8121555116ea5365f6b551b9509f4384) | 69 | | [](https://github.com/google/agi-dev-releases/releases/tag/) | [](https://github.com/google/agi/commit/) | 70 | | [v.0.10.0-dev-20200819](https://github.com/google/agi-dev-releases/releases/tag/v.0.10.0-dev-20200819) | [96095c132f2948677a82343313f5da506a879b92](https://github.com/google/agi/commit/96095c132f2948677a82343313f5da506a879b92) | 71 | | [v.0.10.0-dev-20200820](https://github.com/google/agi-dev-releases/releases/tag/v.0.10.0-dev-20200820) | [2becde763a0137d4d20e17342d7883cf8f7d5e06](https://github.com/google/agi/commit/2becde763a0137d4d20e17342d7883cf8f7d5e06) | 72 | | [v.0.10.0-dev-20200825](https://github.com/google/agi-dev-releases/releases/tag/v.0.10.0-dev-20200825) | [2becde763a0137d4d20e17342d7883cf8f7d5e06](https://github.com/google/agi/commit/2becde763a0137d4d20e17342d7883cf8f7d5e06) | 73 | | [v0.10.0-dev-20200826](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200826) | [2becde763a0137d4d20e17342d7883cf8f7d5e06](https://github.com/google/agi/commit/2becde763a0137d4d20e17342d7883cf8f7d5e06) | 74 | | [0.10.0](https://github.com/google/agi-dev-releases/releases/tag/0.10.0) | [2becde763a0137d4d20e17342d7883cf8f7d5e06](https://github.com/google/agi/commit/2becde763a0137d4d20e17342d7883cf8f7d5e06) | 75 | | [v0.10.0-dev-20200826](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200826) | [2becde763a0137d4d20e17342d7883cf8f7d5e06](https://github.com/google/agi/commit/2becde763a0137d4d20e17342d7883cf8f7d5e06) | 76 | | [v0.10.0-dev-20200826](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200826) | [2becde763a0137d4d20e17342d7883cf8f7d5e06](https://github.com/google/agi/commit/2becde763a0137d4d20e17342d7883cf8f7d5e06) | 77 | | [v0.10.0-dev-20200826](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200826) | [2becde763a0137d4d20e17342d7883cf8f7d5e06](https://github.com/google/agi/commit/2becde763a0137d4d20e17342d7883cf8f7d5e06) | 78 | | [v0.10.0-dev-20200831](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200831) | [a3e4dff396204a3fe5eb356f2e09bd959e7f8526](https://github.com/google/agi/commit/a3e4dff396204a3fe5eb356f2e09bd959e7f8526) | 79 | | [v0.10.0-dev-20200901](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200901) | [9351899b312c8294087865be0855693b8a778c4c](https://github.com/google/agi/commit/9351899b312c8294087865be0855693b8a778c4c) | 80 | | [v0.10.0-dev-20200907](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200907) | [c62b7af3af8cee2053cbe5b3c8a43a9619a4cc20](https://github.com/google/agi/commit/c62b7af3af8cee2053cbe5b3c8a43a9619a4cc20) | 81 | | [v1.0.0-dev-20200915](https://github.com/google/agi-dev-releases/releases/tag/v1.0.0-dev-20200915) | [e31bd70ff2fc6981267df03417280c120054cbcf](https://github.com/google/agi/commit/e31bd70ff2fc6981267df03417280c120054cbcf) | 82 | | [v1.1.0-dev-20200921](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20200921) | [57d660f723339d11724317538c02c5c41c9d9008](https://github.com/google/agi/commit/57d660f723339d11724317538c02c5c41c9d9008) | 83 | | [v1.1.0-dev-20200922](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20200922) | [395b5f3947780365bce0402b9bc635a57ec95695](https://github.com/google/agi/commit/395b5f3947780365bce0402b9bc635a57ec95695) | 84 | | [vv.0.10.0-dev-20200924](https://github.com/google/agi-dev-releases/releases/tag/vv.0.10.0-dev-20200924) | [a76b8df2dc133c46ea8ce40f9fc868b79d469161](https://github.com/google/agi/commit/a76b8df2dc133c46ea8ce40f9fc868b79d469161) | 85 | | [v0.10.0-dev-20200928](https://github.com/google/agi-dev-releases/releases/tag/v0.10.0-dev-20200928) | [0eecc50d2fa5af48bd8f9b37dc2237df1d0c3cf2](https://github.com/google/agi/commit/0eecc50d2fa5af48bd8f9b37dc2237df1d0c3cf2) | 86 | | [v1.1.0-dev-20200929](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20200929) | [0eecc50d2fa5af48bd8f9b37dc2237df1d0c3cf2](https://github.com/google/agi/commit/0eecc50d2fa5af48bd8f9b37dc2237df1d0c3cf2) | 87 | | [v1.1.0-dev-20200930](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20200930) | [115e8294f435455e6314174336936ca0c487111a](https://github.com/google/agi/commit/115e8294f435455e6314174336936ca0c487111a) | 88 | | [v1.1.0-dev-20201017](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20201017) | [fec14b901983ac8eba435c2df4ad0988cc09b273](https://github.com/google/agi/commit/fec14b901983ac8eba435c2df4ad0988cc09b273) | 89 | | [v1.1.0-dev-20201026](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20201026) | [2f120d95fbb4017a6bd85598864a35d694177dba](https://github.com/google/agi/commit/2f120d95fbb4017a6bd85598864a35d694177dba) | 90 | | [v1.1.0-dev-20201028](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20201028) | [6fe67757e8efea62db81cfbbd7ab40164d8f9c81](https://github.com/google/agi/commit/6fe67757e8efea62db81cfbbd7ab40164d8f9c81) | 91 | | [v1.1.0-dev-20201102](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20201102) | [c07ba43c32ff26a858fc2abab03d7c0a9f5598ce](https://github.com/google/agi/commit/c07ba43c32ff26a858fc2abab03d7c0a9f5598ce) | 92 | | [v1.1.0-dev-20201103](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20201103) | [6fbe9e96f6f6a2153982595c5a42398c107f34d2](https://github.com/google/agi/commit/6fbe9e96f6f6a2153982595c5a42398c107f34d2) | 93 | | [v1.1.0-dev-20201106](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20201106) | [2a45abafb86f5b2221e83d44fbe701ec9f95c4a2](https://github.com/google/agi/commit/2a45abafb86f5b2221e83d44fbe701ec9f95c4a2) | 94 | | [v1.1.0-dev-20201109](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20201109) | [89d4b2317b4a715a348000e5abea7b748f81beb7](https://github.com/google/agi/commit/89d4b2317b4a715a348000e5abea7b748f81beb7) | 95 | | [v1.1.0-dev-20201112](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20201112) | [157ee8da32f61215b783e4b678ad77df7f6879ec](https://github.com/google/agi/commit/157ee8da32f61215b783e4b678ad77df7f6879ec) | 96 | | [v1.1.0-dev-20201113](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20201113) | [10b87b5fa064385fa3a1f37268d4e7ae5ebc0191](https://github.com/google/agi/commit/10b87b5fa064385fa3a1f37268d4e7ae5ebc0191) | 97 | | [v1.1.0-dev-20201116](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20201116) | [611ffc3c795696c788ca635c3e65e57a6de1c1de](https://github.com/google/agi/commit/611ffc3c795696c788ca635c3e65e57a6de1c1de) | 98 | | [v.1.0.0-dev-20201125](https://github.com/google/agi-dev-releases/releases/tag/v.1.0.0-dev-20201125) | [d73fdeb984a1a31d8f7ea020ab3fb17b3de77f59](https://github.com/google/agi/commit/d73fdeb984a1a31d8f7ea020ab3fb17b3de77f59) | 99 | | [v.1.0.0-dev-20201202](https://github.com/google/agi-dev-releases/releases/tag/v.1.0.0-dev-20201202) | [68ce48161b0dd93c6043da7aff96c9ecd08a8480](https://github.com/google/agi/commit/68ce48161b0dd93c6043da7aff96c9ecd08a8480) | 100 | | [v1.1.0-dev-20201207](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20201207) | [003259243e776b28fe12b9fa8f7ea79785ded3fc](https://github.com/google/agi/commit/003259243e776b28fe12b9fa8f7ea79785ded3fc) | 101 | | [v1.1.0-dev-20201214](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20201214) | [ced04d4e8a7e55feefa83055af368b36edbbbc6a](https://github.com/google/agi/commit/ced04d4e8a7e55feefa83055af368b36edbbbc6a) | 102 | | [v1.1.0-dev-20210110](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210110) | [4cda8d12f2f66ab06af7e2c28463d426857c2f16](https://github.com/google/agi/commit/4cda8d12f2f66ab06af7e2c28463d426857c2f16) | 103 | | [v1.1.0-dev-20210115](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210115) | [a7e2e075d8fc88ea4e0c2d6366dd6a954aee142f](https://github.com/google/agi/commit/a7e2e075d8fc88ea4e0c2d6366dd6a954aee142f) | 104 | | [v1.1.0-dev-20210120](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210120) | [3ce0355332b0517eedd3c679a18c64b8424e5672](https://github.com/google/agi/commit/3ce0355332b0517eedd3c679a18c64b8424e5672) | 105 | | [v1.1.0-dev-20210125](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210125) | [aa60de711e9870b1e4e40760877dbe3cde88e9a9](https://github.com/google/agi/commit/aa60de711e9870b1e4e40760877dbe3cde88e9a9) | 106 | | [v1.1.0-dev-20210127](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210127) | [3678b588413bc6da5cdd54235aeef4ce895f8ffb](https://github.com/google/agi/commit/3678b588413bc6da5cdd54235aeef4ce895f8ffb) | 107 | | [v1.1.0-dev-20210218](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210218) | [e75fa1c6ac57a620dc03dddb8c8a4e292877b6fa](https://github.com/google/agi/commit/e75fa1c6ac57a620dc03dddb8c8a4e292877b6fa) | 108 | | [v1.1.0-dev-20210222](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210222) | [71aa8fdbb6f6d6bc47c8b9a0410391aaab9bbeb6](https://github.com/google/agi/commit/71aa8fdbb6f6d6bc47c8b9a0410391aaab9bbeb6) | 109 | | [v1.1.0-dev-20210224](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210224) | [71aa8fdbb6f6d6bc47c8b9a0410391aaab9bbeb6](https://github.com/google/agi/commit/71aa8fdbb6f6d6bc47c8b9a0410391aaab9bbeb6) | 110 | | [v1.1.0-dev-20210304](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210304) | [c2bb77e607bfd6673fe3cd2f4fbb741b35f8fa5e](https://github.com/google/agi/commit/c2bb77e607bfd6673fe3cd2f4fbb741b35f8fa5e) | 111 | | [v1.1.0-dev-20210309](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210309) | [58d6efa13e3a2f53895ea752969b2d7902911a23](https://github.com/google/agi/commit/58d6efa13e3a2f53895ea752969b2d7902911a23) | 112 | | [v1.1.0-dev-20210310](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210310) | [00279b9b38d2edcc8292ae35a9627a477940669e](https://github.com/google/agi/commit/00279b9b38d2edcc8292ae35a9627a477940669e) | 113 | | [v1.1.0-dev-20210318](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210318) | [0a20e55844baeb58bb29fe8dd58a004a656efcd5](https://github.com/google/agi/commit/0a20e55844baeb58bb29fe8dd58a004a656efcd5) | 114 | | [v1.1.0-dev-20210322](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210322) | [92233a0964bf2c89c52180547051be3217677048](https://github.com/google/agi/commit/92233a0964bf2c89c52180547051be3217677048) | 115 | | [v1.1.0-dev-20210324](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210324) | [b7fe1589abe914eb7092a5b93b34598255ed2ff9](https://github.com/google/agi/commit/b7fe1589abe914eb7092a5b93b34598255ed2ff9) | 116 | | [v1.1.0-dev-20210329](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210329) | [7af65d056bbedca81be6c6d072799485a6545d02](https://github.com/google/agi/commit/7af65d056bbedca81be6c6d072799485a6545d02) | 117 | | [v1.1.0-dev-20210401](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210401) | [31b63bc286cdeb7481082a09cb220b365ec3058b](https://github.com/google/agi/commit/31b63bc286cdeb7481082a09cb220b365ec3058b) | 118 | | [v1.1.0-dev-20210409](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210409) | [b76c39b8483477ba3b23f309b83b357d68415ad8](https://github.com/google/agi/commit/b76c39b8483477ba3b23f309b83b357d68415ad8) | 119 | | [v1.1.0-dev-20210412](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210412) | [7ce36c943966c1e01fcd6039e0dca4255f19dc8c](https://github.com/google/agi/commit/7ce36c943966c1e01fcd6039e0dca4255f19dc8c) | 120 | | [v1.1.0-dev-20210413](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210413) | [9d57cf8179d69da7c5afe1dc68eadf90ca0f45ea](https://github.com/google/agi/commit/9d57cf8179d69da7c5afe1dc68eadf90ca0f45ea) | 121 | | [v1.1.0-dev-20210421](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210421) | [2d199a4d90ed435541a1830caec22bb4d5020b2c](https://github.com/google/agi/commit/2d199a4d90ed435541a1830caec22bb4d5020b2c) | 122 | | [v1.1.0-dev-20210422](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210422) | [72a3fa765c4cc9753e11173631f998f2f9086e00](https://github.com/google/agi/commit/72a3fa765c4cc9753e11173631f998f2f9086e00) | 123 | | [v1.1.0-dev-20210423](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210423) | [7bb9022cb9f4a55cc150b723dfda1cb8050c4714](https://github.com/google/agi/commit/7bb9022cb9f4a55cc150b723dfda1cb8050c4714) | 124 | | [v1.1.0-dev-20210430](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210430) | [02fd1b15ea7d27cc0b33db06b90d39f443a75b9f](https://github.com/google/agi/commit/02fd1b15ea7d27cc0b33db06b90d39f443a75b9f) | 125 | | [v1.1.0-dev-20210504](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210504) | [d228f61e9dd84428c49860dfcd20461e3ec8c937](https://github.com/google/agi/commit/d228f61e9dd84428c49860dfcd20461e3ec8c937) | 126 | | [v1.1.0-dev-20210506](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210506) | [71b993cc8ff10d6717ceb874bb0f5d27965de31f](https://github.com/google/agi/commit/71b993cc8ff10d6717ceb874bb0f5d27965de31f) | 127 | | [v1.1.0-dev-20210507](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210507) | [80300ba40dc226a4e1665d58576ba077dc2a080c](https://github.com/google/agi/commit/80300ba40dc226a4e1665d58576ba077dc2a080c) | 128 | | [v1.1.0-dev-20210513](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210513) | [1f4daaf7de50b55ed3258e072961d4e73f93b06a](https://github.com/google/agi/commit/1f4daaf7de50b55ed3258e072961d4e73f93b06a) | 129 | | [v1.1.0-dev-20210514](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210514) | [32b8286c71f1861d8fbb5e1fe9a0ac0b89a54193](https://github.com/google/agi/commit/32b8286c71f1861d8fbb5e1fe9a0ac0b89a54193) | 130 | | [v1.1.0-dev-20210517](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210517) | [d6dd5543df973d6c1ea48247eff5f41c901c2f9c](https://github.com/google/agi/commit/d6dd5543df973d6c1ea48247eff5f41c901c2f9c) | 131 | | [v1.1.0-dev-20210521](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210521) | [09a1f1be082720624937fd142e38ebd6a9fc95db](https://github.com/google/agi/commit/09a1f1be082720624937fd142e38ebd6a9fc95db) | 132 | | [v1.1.0-dev-20210526](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210526) | [3551b2a8a3f58824c45a85f49af2f8efa6885db5](https://github.com/google/agi/commit/3551b2a8a3f58824c45a85f49af2f8efa6885db5) | 133 | | [v1.1.0-dev-20210527](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210527) | [da40f9259ecf780d043f8560e7eb88159b7c105b](https://github.com/google/agi/commit/da40f9259ecf780d043f8560e7eb88159b7c105b) | 134 | | [v1.1.0-dev-20210604](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210604) | [e3826acbb71b5a03951751ab69f2817f1b082531](https://github.com/google/agi/commit/e3826acbb71b5a03951751ab69f2817f1b082531) | 135 | | [v1.1.0-dev-20210608](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210608) | [72266d243a2588266d6ece7ea90f65cf0f617724](https://github.com/google/agi/commit/72266d243a2588266d6ece7ea90f65cf0f617724) | 136 | | [v1.1.0-dev-20210610](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210610) | [0db93785df3b69c8eea8c17b0d05bbac67475410](https://github.com/google/agi/commit/0db93785df3b69c8eea8c17b0d05bbac67475410) | 137 | | [v1.1.0-dev-20210611](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210611) | [a53dc99d09e03897ae1d865ff6485fedb30ed5fa](https://github.com/google/agi/commit/a53dc99d09e03897ae1d865ff6485fedb30ed5fa) | 138 | | [v1.1.0-dev-20210615](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210615) | [97ca2128b5e98be97e9318c455fee38faee421a8](https://github.com/google/agi/commit/97ca2128b5e98be97e9318c455fee38faee421a8) | 139 | | [v1.1.0-dev-20210618](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210618) | [838547fe1030f46ff75d93f984c146739ed37a83](https://github.com/google/agi/commit/838547fe1030f46ff75d93f984c146739ed37a83) | 140 | | [v1.1.0-dev-20210621](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210621) | [ef19cfac58fa191f59625016928861e0f43af917](https://github.com/google/agi/commit/ef19cfac58fa191f59625016928861e0f43af917) | 141 | | [v1.1.0-dev-20210624](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210624) | [c9e35e8221e5a3bc0275d364e0409835553ce3bd](https://github.com/google/agi/commit/c9e35e8221e5a3bc0275d364e0409835553ce3bd) | 142 | | [v1.1.0-dev-20210625](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210625) | [e98be39c9775595647dbe94fdcc21cea6b3c3b0d](https://github.com/google/agi/commit/e98be39c9775595647dbe94fdcc21cea6b3c3b0d) | 143 | | [v1.1.0-dev-20210628](https://github.com/google/agi-dev-releases/releases/tag/v1.1.0-dev-20210628) | [55253588346e13c966dc30670b1a5a4a872fce01](https://github.com/google/agi/commit/55253588346e13c966dc30670b1a5a4a872fce01) | 144 | | [v2.1.0-dev-20210709](https://github.com/google/agi-dev-releases/releases/tag/v2.1.0-dev-20210709) | [1b2063663650f9750a98aac74dd88f2bcc062935](https://github.com/google/agi/commit/1b2063663650f9750a98aac74dd88f2bcc062935) | 145 | | [v2.1.0-dev-20210712](https://github.com/google/agi-dev-releases/releases/tag/v2.1.0-dev-20210712) | [c9f404678458bf439fad06473dff3abff1b37560](https://github.com/google/agi/commit/c9f404678458bf439fad06473dff3abff1b37560) | 146 | | [v2.1.0-dev-20210714](https://github.com/google/agi-dev-releases/releases/tag/v2.1.0-dev-20210714) | [6c352d0e1b5118b035d39a5cd3b61b8a3b8bd5bd](https://github.com/google/agi/commit/6c352d0e1b5118b035d39a5cd3b61b8a3b8bd5bd) | 147 | | [v2.1.0-dev-20210715](https://github.com/google/agi-dev-releases/releases/tag/v2.1.0-dev-20210715) | [5b53f7b9fcd1090126212269de8ea668d021aca0](https://github.com/google/agi/commit/5b53f7b9fcd1090126212269de8ea668d021aca0) | 148 | | [v2.1.0-dev-20210726](https://github.com/google/agi-dev-releases/releases/tag/v2.1.0-dev-20210726) | [165061e6948cd1d51c0d0a9c270f0616d00afe24](https://github.com/google/agi/commit/165061e6948cd1d51c0d0a9c270f0616d00afe24) | 149 | | [v2.1.0-dev-20210729](https://github.com/google/agi-dev-releases/releases/tag/v2.1.0-dev-20210729) | [42e1967787409f3e8c2d86b6005a1415a3458ea1](https://github.com/google/agi/commit/42e1967787409f3e8c2d86b6005a1415a3458ea1) | 150 | | [v2.1.0-dev-20210804](https://github.com/google/agi-dev-releases/releases/tag/v2.1.0-dev-20210804) | [b9d11778a58031afd373a43517aaec43813d68d6](https://github.com/google/agi/commit/b9d11778a58031afd373a43517aaec43813d68d6) | 151 | | [v2.1.0-dev-20210809](https://github.com/google/agi-dev-releases/releases/tag/v2.1.0-dev-20210809) | [fdd64b3c60266b9b798413c340c573847f86c972](https://github.com/google/agi/commit/fdd64b3c60266b9b798413c340c573847f86c972) | 152 | | [v2.1.0-dev-20210820](https://github.com/google/agi-dev-releases/releases/tag/v2.1.0-dev-20210820) | [e2c9eb021f67f949fe78bc49dde160fe71135161](https://github.com/google/agi/commit/e2c9eb021f67f949fe78bc49dde160fe71135161) | 153 | | [v2.1.0-dev-20210902](https://github.com/google/agi-dev-releases/releases/tag/v2.1.0-dev-20210902) | [70e2408ae5db5817ea32f633f0ba51c7a57edd87](https://github.com/google/agi/commit/70e2408ae5db5817ea32f633f0ba51c7a57edd87) | 154 | | [v2.1.0-dev-20210907](https://github.com/google/agi-dev-releases/releases/tag/v2.1.0-dev-20210907) | [eb92d836b09088613eeac09bfe13d262447ffeeb](https://github.com/google/agi/commit/eb92d836b09088613eeac09bfe13d262447ffeeb) | 155 | | [v2.1.0-dev-20210916](https://github.com/google/agi-dev-releases/releases/tag/v2.1.0-dev-20210916) | [d25ceb21a63e0a6d72ca0205e1c19b857b6b4f51](https://github.com/google/agi/commit/d25ceb21a63e0a6d72ca0205e1c19b857b6b4f51) | 156 | | [v2.1.0-dev-20210924](https://github.com/google/agi-dev-releases/releases/tag/v2.1.0-dev-20210924) | [608d8347fce61a4840f694863a3e6afcc6dc03ca](https://github.com/google/agi/commit/608d8347fce61a4840f694863a3e6afcc6dc03ca) | 157 | | [v2.1.0-dev-20211029](https://github.com/google/agi-dev-releases/releases/tag/v2.1.0-dev-20211029) | [f6963652e37a97c62264fb3bf85247805dd32cb5](https://github.com/google/agi/commit/f6963652e37a97c62264fb3bf85247805dd32cb5) | 158 | | [v2.2.0-dev-20211123](https://github.com/google/agi-dev-releases/releases/tag/v2.2.0-dev-20211123) | [6a1384249870e17c41858a643ce4374d1397025e](https://github.com/google/agi/commit/6a1384249870e17c41858a643ce4374d1397025e) | 159 | | [v2.1.0-dev-20211129](https://github.com/google/agi-dev-releases/releases/tag/v2.1.0-dev-20211129) | [d60f8776b07f8e9a99335658fea8ba127e4dc0fb](https://github.com/google/agi/commit/d60f8776b07f8e9a99335658fea8ba127e4dc0fb) | 160 | | [v2.2.0-dev-20220120](https://github.com/google/agi-dev-releases/releases/tag/v2.2.0-dev-20220120) | [136277d9c2ca5d416c38f41f2c376fd820848ecb](https://github.com/google/agi/commit/136277d9c2ca5d416c38f41f2c376fd820848ecb) | 161 | | [v2.2.0-dev-20220302](https://github.com/google/agi-dev-releases/releases/tag/v2.2.0-dev-20220302) | [7022d6d7dd658f053cdd8082e889890d70708083](https://github.com/google/agi/commit/7022d6d7dd658f053cdd8082e889890d70708083) | 162 | | [v2.1.0-dev-20220303](https://github.com/google/agi-dev-releases/releases/tag/v2.1.0-dev-20220303) | [7022d6d7dd658f053cdd8082e889890d70708083](https://github.com/google/agi/commit/7022d6d7dd658f053cdd8082e889890d70708083) | 163 | | [v3.1.0-dev-20220314](https://github.com/google/agi-dev-releases/releases/tag/v3.1.0-dev-20220314) | [21f0184e910f69e8e65d342adcd191364cddd57a](https://github.com/google/agi/commit/21f0184e910f69e8e65d342adcd191364cddd57a) | 164 | | [v2.1.0-dev-20220427](https://github.com/google/agi-dev-releases/releases/tag/v2.1.0-dev-20220427) | [0d90ec3e244b7d30f4ea35c96ac35c1685b6cb20](https://github.com/google/agi/commit/0d90ec3e244b7d30f4ea35c96ac35c1685b6cb20) | 165 | | [v3.1.0-dev-20220627](https://github.com/google/agi-dev-releases/releases/tag/v3.1.0-dev-20220627) | [975812d224d37cbd8f1686a798549bbd843d628e](https://github.com/google/agi/commit/975812d224d37cbd8f1686a798549bbd843d628e) | 166 | | [v3.1.0-dev-20220713](https://github.com/google/agi-dev-releases/releases/tag/v3.1.0-dev-20220713) | [50cbca2132b3118c9f25952b218bd35761f5522b](https://github.com/google/agi/commit/50cbca2132b3118c9f25952b218bd35761f5522b) | 167 | | [v3.1.0-dev-20220811](https://github.com/google/agi-dev-releases/releases/tag/v3.1.0-dev-20220811) | [2f6ac02dd786e8cee448e68e8cf7e9a2c55e99d4](https://github.com/google/agi/commit/2f6ac02dd786e8cee448e68e8cf7e9a2c55e99d4) | 168 | | [v3.1.0-dev-20220811](https://github.com/google/agi-dev-releases/releases/tag/v3.1.0-dev-20220811) | [9068f997dad118806fa4203aad43fa8d5924c1f8](https://github.com/google/agi/commit/9068f997dad118806fa4203aad43fa8d5924c1f8) | 169 | | [v3.1.0-dev-20220811](https://github.com/google/agi-dev-releases/releases/tag/v3.1.0-dev-20220811) | [9068f997dad118806fa4203aad43fa8d5924c1f8](https://github.com/google/agi/commit/9068f997dad118806fa4203aad43fa8d5924c1f8) | 170 | | [v3.1.0-dev-20220830](https://github.com/google/agi-dev-releases/releases/tag/v3.1.0-dev-20220830) | [5d89841decb2653703cd7373da0fc44c98905454](https://github.com/google/agi/commit/5d89841decb2653703cd7373da0fc44c98905454) | 171 | | [v3.2.0-dev-20220831](https://github.com/google/agi-dev-releases/releases/tag/v3.2.0-dev-20220831) | [b12d38469611cd97380cae458c4fc3a64e0e0dcc](https://github.com/google/agi/commit/b12d38469611cd97380cae458c4fc3a64e0e0dcc) | 172 | | [v3.2.0-dev-20220913](https://github.com/google/agi-dev-releases/releases/tag/v3.2.0-dev-20220913) | [8f638e0077411a0990d0935bccab5a57ed6a899e](https://github.com/google/agi/commit/8f638e0077411a0990d0935bccab5a57ed6a899e) | 173 | | [v3.2.1-dev-20220916](https://github.com/google/agi-dev-releases/releases/tag/v3.2.1-dev-20220916) | [8ca26d6ef540c2de246ef17c5612127a6e3e2772](https://github.com/google/agi/commit/8ca26d6ef540c2de246ef17c5612127a6e3e2772) | 174 | | [v3.3.0-dev-20221121](https://github.com/google/agi-dev-releases/releases/tag/v3.3.0-dev-20221121) | [e524de2ad6065a7d0f1e6e52de171ae69049891c](https://github.com/google/agi/commit/e524de2ad6065a7d0f1e6e52de171ae69049891c) | 175 | | [v3.3.0-dev-20221128](https://github.com/google/agi-dev-releases/releases/tag/v3.3.0-dev-20221128) | [869d281c1bef8bdf853c20d9a90a07335779e51c](https://github.com/google/agi/commit/869d281c1bef8bdf853c20d9a90a07335779e51c) | 176 | | [v3.3.0-dev-20230119](https://github.com/google/agi-dev-releases/releases/tag/v3.3.0-dev-20230119) | [1cfd938ef710f5dea25c38acf3bf0aade08403e9](https://github.com/google/agi/commit/1cfd938ef710f5dea25c38acf3bf0aade08403e9) | 177 | | [v3.3.0-dev-20230123](https://github.com/google/agi-dev-releases/releases/tag/v3.3.0-dev-20230123) | [1cfd938ef710f5dea25c38acf3bf0aade08403e9](https://github.com/google/agi/commit/1cfd938ef710f5dea25c38acf3bf0aade08403e9) | 178 | | [v3.3.1-dev-20230519](https://github.com/google/agi-dev-releases/releases/tag/v3.3.1-dev-20230519) | [7ee513c558ab754b6cf5c9ab2c662dc918ff92e9](https://github.com/google/agi/commit/7ee513c558ab754b6cf5c9ab2c662dc918ff92e9) | 179 | | [v3.3.1-dev-20230607](https://github.com/google/agi-dev-releases/releases/tag/v3.3.1-dev-20230607) | [7ee513c558ab754b6cf5c9ab2c662dc918ff92e9](https://github.com/google/agi/commit/7ee513c558ab754b6cf5c9ab2c662dc918ff92e9) | 180 | | [v3.3.2-dev-20241213](https://github.com/google/agi-dev-releases/releases/tag/v3.3.2-dev-20241213) | [2f35209fefdab6be7abe90c6d4a24e2802495f97](https://github.com/google/agi/commit/2f35209fefdab6be7abe90c6d4a24e2802495f97) | 181 | | [v3.3.2-dev-20241219](https://github.com/google/agi-dev-releases/releases/tag/v3.3.2-dev-20241219) | [eb52b61749665cfa5f0fc9ddc1f872f456ad1b51](https://github.com/google/agi/commit/eb52b61749665cfa5f0fc9ddc1f872f456ad1b51) | 182 | | [v3.3.3-dev-20241219](https://github.com/google/agi-dev-releases/releases/tag/v3.3.3-dev-20241219) | [6f587a5919e14a3ba816672d231b0298484dfca8](https://github.com/google/agi/commit/6f587a5919e14a3ba816672d231b0298484dfca8) | 183 | | [v3.3.3-dev-20241220](https://github.com/google/agi-dev-releases/releases/tag/v3.3.3-dev-20241220) | [5f97b4fd99a9459320b782203ce2de5351a1e661](https://github.com/google/agi/commit/5f97b4fd99a9459320b782203ce2de5351a1e661) | 184 | --------------------------------------------------------------------------------