)]}'
{
  "log": [
    {
      "commit": "e322f9d60e7cd4d0f787c651831d218866d5ab67",
      "tree": "2d3de356fa5ea7bb7c5e29fc5f02012d1444b82b",
      "parents": [
        "7563d73ea5e9ebed04f6786d94e9368b4d01170d"
      ],
      "author": {
        "name": "Cooper Knaak",
        "email": "cooperknaak@gmail.com",
        "time": "Thu Apr 11 15:40:17 2024"
      },
      "committer": {
        "name": "Cooper Knaak",
        "email": "cooperknaak@gmail.com",
        "time": "Thu Apr 11 15:40:17 2024"
      },
      "message": "Add explicit abseil str_cat import to build with new abseil version.\n"
    },
    {
      "commit": "7563d73ea5e9ebed04f6786d94e9368b4d01170d",
      "tree": "65ecf31992d3503030d85de32e1abc9239eb341b",
      "parents": [
        "2f396e6d281749cf64bd0e17a55600c305633631"
      ],
      "author": {
        "name": "Cooper Knaak",
        "email": "cooperknaak@gmail.com",
        "time": "Thu Aug 10 17:06:28 2023"
      },
      "committer": {
        "name": "Cooper Knaak",
        "email": "cooperknaak@gmail.com",
        "time": "Thu Aug 10 17:06:28 2023"
      },
      "message": "Update README to include explicit Swift examples.\n"
    },
    {
      "commit": "2f396e6d281749cf64bd0e17a55600c305633631",
      "tree": "d8efd3a797b6da60d36bd1ea866eab405f816b4f",
      "parents": [
        "149d0595c7aa4ae86ae62fd879fe75beaa2c26e7"
      ],
      "author": {
        "name": "Cooper Knaak",
        "email": "cooperknaak@gmail.com",
        "time": "Tue May 09 21:07:40 2023"
      },
      "committer": {
        "name": "Cooper Knaak",
        "email": "cooperknaak@gmail.com",
        "time": "Tue May 09 21:07:40 2023"
      },
      "message": "Include gtx_types.lh in GTXImageRGBAData+GTXOOPAdditinos to fix podspec lint error related to C++ symbols.\n"
    },
    {
      "commit": "149d0595c7aa4ae86ae62fd879fe75beaa2c26e7",
      "tree": "5cad0ac71180d26410fcdce9e933d64da87ef756",
      "parents": [
        "d4c9fb8663bad384f00c6ec8c9d58e0a0965cf51"
      ],
      "author": {
        "name": "Cooper Knaak",
        "email": "cooperknaak@gmail.com",
        "time": "Tue May 09 20:53:54 2023"
      },
      "committer": {
        "name": "Cooper Knaak",
        "email": "cooperknaak@gmail.com",
        "time": "Tue May 09 20:53:54 2023"
      },
      "message": "Add minimum deployment target to parent podspec.\n"
    },
    {
      "commit": "d4c9fb8663bad384f00c6ec8c9d58e0a0965cf51",
      "tree": "8d7d60b61c63870493632544e6ae26b50b480092",
      "parents": [
        "0d5be259b778cd6f9fa29ef1289f1333c5192863"
      ],
      "author": {
        "name": "Cooper Knaak",
        "email": "cooperknaak@gmail.com",
        "time": "Tue May 09 20:31:26 2023"
      },
      "committer": {
        "name": "Cooper Knaak",
        "email": "cooperknaak@gmail.com",
        "time": "Tue May 09 20:31:26 2023"
      },
      "message": "Update podspec and add custom module map to fix umbrella header including C++ symbols, which broke Swift builds.\n"
    },
    {
      "commit": "0d5be259b778cd6f9fa29ef1289f1333c5192863",
      "tree": "9455d943c9e72e232158231b1765aedd2ce06905",
      "parents": [
        "737990867d967bde2ee41ece9b7a12d37fe20de3",
        "ee68356ec04f57bb196fa761a69fed4ee867b6bd"
      ],
      "author": {
        "name": "CooperCorona",
        "email": "CooperCorona@users.noreply.github.com",
        "time": "Wed Aug 24 16:24:52 2022"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Aug 24 16:24:52 2022"
      },
      "message": "Merge pull request #26 from stephanemoore/master\n\n[gtxilib/cleanup] Delete duplicate implementation of -[NSObject gtx_logProperties] 🧹"
    },
    {
      "commit": "ee68356ec04f57bb196fa761a69fed4ee867b6bd",
      "tree": "9455d943c9e72e232158231b1765aedd2ce06905",
      "parents": [
        "737990867d967bde2ee41ece9b7a12d37fe20de3"
      ],
      "author": {
        "name": "Stephane Moore",
        "email": "stephane.moore@gmail.com",
        "time": "Mon Aug 22 06:34:55 2022"
      },
      "committer": {
        "name": "Stephane Moore",
        "email": "stephane.moore@gmail.com",
        "time": "Mon Aug 22 06:43:51 2022"
      },
      "message": "[gtxilib/cleanup] Delete duplicate implementation of -[NSObject gtx_logProperties] 🧹\n\nPrior to this change, -[NSObject gtx_logProperties] was implemented in\ntwo source files:\n• Classes/NSObject+GTXLogging.m\n• Classes/ObjCPP/NSObject+GTXAdditions.mm\n\nThis results in a linker warning due to category method collision.\n\nClasses/NSObject+GTXLogging.h actually declares the category method\n-gtx_logProperties whereas Classes/ObjCPP/NSObject+GTXAdditions.h does\nnot. Classes/NSObject+GTXLogging.m also contains nothing apart from the\nimplementation of -[NSObject gtx_logProperties] whereas\nClasses/ObjCPP/NSObject+GTXAdditions.mm contains the implementations of\nnumerous methods. These facts seem to imply that\nClasses/NSObject+GTXLogging.m was primarily purposed for the\nimplementation of -[NSObject gtx_logProperties] and would not exist\notherwise. To resolve this conflict, this change proposes to delete the\nduplicate from Classes/ObjCPP/NSObject+GTXAdditions.mm.\n"
    },
    {
      "commit": "737990867d967bde2ee41ece9b7a12d37fe20de3",
      "tree": "0a9ea69b43682659f1429f0ec6e46fb082c9db11",
      "parents": [
        "06d015eb8f8975f37aceebf4e06ad3d0ca9bba41"
      ],
      "author": {
        "name": "CooperCorona",
        "email": "cooperknaak@google.com",
        "time": "Mon May 23 19:01:46 2022"
      },
      "committer": {
        "name": "CooperCorona",
        "email": "cooperknaak@google.com",
        "time": "Mon May 23 19:01:46 2022"
      },
      "message": "Replace Protobuf dependency with pure C++ data models.\n"
    },
    {
      "commit": "06d015eb8f8975f37aceebf4e06ad3d0ca9bba41",
      "tree": "bd6b0dd02781924722431db72fbdb0783340919f",
      "parents": [
        "20d99f26263278edda88ffed52e7acfdaba656c5"
      ],
      "author": {
        "name": "CooperCorona",
        "email": "cooperknaak@google.com",
        "time": "Tue Feb 15 21:36:23 2022"
      },
      "committer": {
        "name": "CooperCorona",
        "email": "cooperknaak@google.com",
        "time": "Tue Feb 15 21:36:23 2022"
      },
      "message": "Move deployment_target to main spec to fix lint issue.\n"
    },
    {
      "commit": "20d99f26263278edda88ffed52e7acfdaba656c5",
      "tree": "b19172f82fe15c9c4187debbe1552edab88d03c5",
      "parents": [
        "0e6d6628c5b4d733dfc8f605ab576dcbb72aeeb9"
      ],
      "author": {
        "name": "CooperCorona",
        "email": "cooperknaak@google.com",
        "time": "Tue Feb 15 21:03:07 2022"
      },
      "committer": {
        "name": "CooperCorona",
        "email": "cooperknaak@google.com",
        "time": "Tue Feb 15 21:03:07 2022"
      },
      "message": "Add Obj-C++ tests for C++ classes. Add translations and classes to retrieve them. Add data structures for C++ check results and displaying messages about results to users.\n"
    },
    {
      "commit": "0e6d6628c5b4d733dfc8f605ab576dcbb72aeeb9",
      "tree": "f5fd9051d0a0fa6c7e42bc9c4ce545c9a63286c6",
      "parents": [
        "8245048a7023a37055d8d6c7a421bce3fcf79e6b"
      ],
      "author": {
        "name": "CooperCorona",
        "email": "cooperknaak@google.com",
        "time": "Fri Dec 10 18:55:10 2021"
      },
      "committer": {
        "name": "CooperCorona",
        "email": "cooperknaak@google.com",
        "time": "Fri Dec 10 18:55:10 2021"
      },
      "message": "Set Protobuf-C++ version to exactly 3.13 so Protobuf runtime matches pre-generated proto C++ files. Update README to include working Podfile example.\n"
    },
    {
      "commit": "8245048a7023a37055d8d6c7a421bce3fcf79e6b",
      "tree": "0b23102ea58f7dd0033446810fe463c6e85d1224",
      "parents": [
        "1fd581bbf4a2d14524752371a3b7448d740f33f5"
      ],
      "author": {
        "name": "Justin Cohen",
        "email": "justincohen@google.com",
        "time": "Fri Aug 06 20:02:50 2021"
      },
      "committer": {
        "name": "SidJ",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Fri Aug 06 22:54:16 2021"
      },
      "message": "Correct find_if_not predicate compile error.\n"
    },
    {
      "commit": "1fd581bbf4a2d14524752371a3b7448d740f33f5",
      "tree": "cb6da6298b7c0369d2ebb576c4cf2d4624375928",
      "parents": [
        "a201f1ed9d64f12d921e5c55b7c71dde0aaa4d0d"
      ],
      "author": {
        "name": "sid-j",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Wed Aug 04 22:23:25 2021"
      },
      "committer": {
        "name": "sid-j",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Wed Aug 04 22:23:25 2021"
      },
      "message": "Updated protobuf outputs to be compatible with protoc 3.13, and C++ with C++14.\n"
    },
    {
      "commit": "a201f1ed9d64f12d921e5c55b7c71dde0aaa4d0d",
      "tree": "4eb36ab39f3266756842a58328c7b7981ad14c44",
      "parents": [
        "bef823b8a23ebe7ee343986995e21efff34661c5"
      ],
      "author": {
        "name": "sid-j",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Fri Jul 30 19:37:39 2021"
      },
      "committer": {
        "name": "sid-j",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Fri Jul 30 19:37:39 2021"
      },
      "message": "Reverted protoc output files to before #bef823b\n"
    },
    {
      "commit": "bef823b8a23ebe7ee343986995e21efff34661c5",
      "tree": "0451dc2c3ccb29e1630e81ef15445e2927459df2",
      "parents": [
        "58339b7c778895b29cb567b72be224667b549d01"
      ],
      "author": {
        "name": "sid-j",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Fri Jul 30 00:15:32 2021"
      },
      "committer": {
        "name": "sid-j",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Fri Jul 30 00:15:32 2021"
      },
      "message": "Updated protobuf code with latest protobuf compiler output.\n"
    },
    {
      "commit": "58339b7c778895b29cb567b72be224667b549d01",
      "tree": "4eb36ab39f3266756842a58328c7b7981ad14c44",
      "parents": [
        "d9161c0cefd07556cd97739fdc8862a2711bc1d3"
      ],
      "author": {
        "name": "sid-j",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Wed Jul 28 21:51:33 2021"
      },
      "committer": {
        "name": "sid-j",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Wed Jul 28 21:51:33 2021"
      },
      "message": "Changed Analytics to use SHA256 from MD5 since MD5 has been deprecated from iOS 13. Bumped podspec version.\n"
    },
    {
      "commit": "d9161c0cefd07556cd97739fdc8862a2711bc1d3",
      "tree": "c9421f85b025c8eb3d6d13ee7d5ace58e7c37124",
      "parents": [
        "84e9b855d0b3de0b98cd20dc41c4dfdca898a087"
      ],
      "author": {
        "name": "CooperCorona",
        "email": "cooperknaak@google.com",
        "time": "Thu Apr 01 21:26:17 2021"
      },
      "committer": {
        "name": "CooperCorona",
        "email": "cooperknaak@google.com",
        "time": "Thu Apr 01 21:26:17 2021"
      },
      "message": "Update Podspec to exclude C++ and Obj-C++ from public headers. This prevents Swift from trying to import C++ symbols in the umbrella header, which fixes Swift compatibility.\n"
    },
    {
      "commit": "84e9b855d0b3de0b98cd20dc41c4dfdca898a087",
      "tree": "b51bd414e88fefe551aae30060676ba9930718bc",
      "parents": [
        "159c6eac2c4f2361636eefeaa567083320ae1db8"
      ],
      "author": {
        "name": "SidJ",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Fri Feb 12 20:04:16 2021"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Feb 12 20:04:16 2021"
      },
      "message": "Updated install instructions for manual installation."
    },
    {
      "commit": "159c6eac2c4f2361636eefeaa567083320ae1db8",
      "tree": "1314e25b64de02ea142ced2a0c531dfa37674d44",
      "parents": [
        "01e04c578debf339dbabd6f488a7a21f38ae5140"
      ],
      "author": {
        "name": "CooperCorona",
        "email": "cooperknaak@google.com",
        "time": "Fri Feb 12 00:59:27 2021"
      },
      "committer": {
        "name": "CooperCorona",
        "email": "cooperknaak@google.com",
        "time": "Fri Feb 12 00:59:27 2021"
      },
      "message": "Add missing headers to umbrella header.\n"
    },
    {
      "commit": "01e04c578debf339dbabd6f488a7a21f38ae5140",
      "tree": "1ad76024dad7fc8984a253db13adf75e00815caf",
      "parents": [
        "60e3c7f6143b3000ceb68dd0c300a1c00679a5e0"
      ],
      "author": {
        "name": "sidj",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Tue Feb 09 19:07:04 2021"
      },
      "committer": {
        "name": "sidj",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Tue Feb 09 19:07:04 2021"
      },
      "message": "Updated pod spec to include C++ files\n"
    },
    {
      "commit": "60e3c7f6143b3000ceb68dd0c300a1c00679a5e0",
      "tree": "367545cd882967d853e10fb73d223505bac55f7f",
      "parents": [
        "bfc82f2c7294486309ca459f52925cbf040d71d7"
      ],
      "author": {
        "name": "sidj",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Tue Feb 09 18:57:34 2021"
      },
      "committer": {
        "name": "sidj",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Tue Feb 09 18:57:34 2021"
      },
      "message": "Updated pod spec to include C++ files\n"
    },
    {
      "commit": "bfc82f2c7294486309ca459f52925cbf040d71d7",
      "tree": "9e17b1e5dfe2b6fac31d5eba191dd64bf9ca79ee",
      "parents": [
        "409c037a6849c35feb08323a281a729ce69e0e0a"
      ],
      "author": {
        "name": "sidj",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Tue Feb 09 00:30:19 2021"
      },
      "committer": {
        "name": "sidj",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Tue Feb 09 00:30:19 2021"
      },
      "message": "Updated pod spec with protobuf deps and settings\n"
    },
    {
      "commit": "409c037a6849c35feb08323a281a729ce69e0e0a",
      "tree": "a29d9afc8fb5de9a893b16e7bbe89b7400bcdbbd",
      "parents": [
        "2d1be50c3156982e6cbcf9e28bb785284ca0bb75"
      ],
      "author": {
        "name": "sidj",
        "email": "none@github.com",
        "time": "Mon Feb 08 22:59:13 2021"
      },
      "committer": {
        "name": "sidj",
        "email": "none@github.com",
        "time": "Mon Feb 08 22:59:13 2021"
      },
      "message": "Added support for XCUITests (with a subset of checks). Add check for dynamic text check. Fixed typos and some APIs have been renamed for clarity. APIs imporvements: more flexible scan APIs that return result info. Improved accessibility auto enable code. Extracted GTX core logic into a C++ library and used Protobuf for cross platform execution.\n"
    },
    {
      "commit": "2d1be50c3156982e6cbcf9e28bb785284ca0bb75",
      "tree": "e2887a8aaca2cc97ee4debcf24bbf53de871b50c",
      "parents": [
        "b0cd384435ad45acd8ab787f6a9079c5eef78f30"
      ],
      "author": {
        "name": "j-sid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Fri Feb 21 18:08:34 2020"
      },
      "committer": {
        "name": "j-sid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Fri Feb 21 18:08:34 2020"
      },
      "message": "Updated PodSpec to latest version\n"
    },
    {
      "commit": "b0cd384435ad45acd8ab787f6a9079c5eef78f30",
      "tree": "fc1001a7c29b9cd2895d79436f49e191ccc42780",
      "parents": [
        "02a890fa1176686307129ceb7f1dd6e7b2c696b4"
      ],
      "author": {
        "name": "sidj",
        "email": "siddarthaj@siddarthaj-macpro.roam.corp.google.com",
        "time": "Thu Feb 20 22:42:03 2020"
      },
      "committer": {
        "name": "sidj",
        "email": "siddarthaj@siddarthaj-macpro.roam.corp.google.com",
        "time": "Thu Feb 20 22:42:03 2020"
      },
      "message": "Added missing GTXResult.h/.m files\n"
    },
    {
      "commit": "02a890fa1176686307129ceb7f1dd6e7b2c696b4",
      "tree": "22a948963a01f243406e09221cac0c0c664e40b0",
      "parents": [
        "641200f9073e59b9fb1d1d0b3c9cc38dcb250206"
      ],
      "author": {
        "name": "Sid Janga",
        "email": "siddarthaj@siddarthaj-macpro.roam.corp.google.com",
        "time": "Thu Feb 20 21:36:24 2020"
      },
      "committer": {
        "name": "Sid Janga",
        "email": "siddarthaj@siddarthaj-macpro.roam.corp.google.com",
        "time": "Thu Feb 20 21:36:24 2020"
      },
      "message": "Updated project file and added GTXResult API\n"
    },
    {
      "commit": "641200f9073e59b9fb1d1d0b3c9cc38dcb250206",
      "tree": "6e7d32a2030155fe1549dc9eed56638dec537c5d",
      "parents": [
        "42c7a1d26f6ad543bc59695481ff75aae59a9bc6"
      ],
      "author": {
        "name": "j-sid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Fri Jan 24 19:58:22 2020"
      },
      "committer": {
        "name": "j-sid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Fri Jan 24 19:58:22 2020"
      },
      "message": "Bumped podspec version to 3.0\n"
    },
    {
      "commit": "42c7a1d26f6ad543bc59695481ff75aae59a9bc6",
      "tree": "b50e2dd46e10d8fee821e0e9650949ed5a195147",
      "parents": [
        "34f9b74809ef6c3811b4b4afeebb429a16360fcc"
      ],
      "author": {
        "name": "j-sid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Fri Jan 24 18:44:59 2020"
      },
      "committer": {
        "name": "j-sid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Fri Jan 24 18:44:59 2020"
      },
      "message": "Added classes for artifact collection and processing. Updated contrast and toouch target checks for accuracy. Changed all private method names to include appropriate prefix.\n\nAdded the following classes GTXArtifactCollector, GTXArtifactProcessor, GTXError, GTXReport, GTXSnapshotBuffer, GTXSnapshotContainer. Updated all prefixes of private methods from  \"_\" to \"gtx_\" or \"gtxtest_\" for tests. Updated contrast check calculation accuracy. Updated touch target check to include frame as well as accessibility frame. And minot refactoring.\n"
    },
    {
      "commit": "34f9b74809ef6c3811b4b4afeebb429a16360fcc",
      "tree": "130d6ec2f373be81dcff224e942d474f17acde21",
      "parents": [
        "4f98f3a9054f7e21ef9fc2dbafc2509906425331"
      ],
      "author": {
        "name": "j-sid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Wed Jun 12 20:49:20 2019"
      },
      "committer": {
        "name": "j-sid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Wed Jun 12 20:49:20 2019"
      },
      "message": "Fixed accuracy issue in contrast calculations and added helper methods into GTXToolkit interface.\n"
    },
    {
      "commit": "4f98f3a9054f7e21ef9fc2dbafc2509906425331",
      "tree": "071d05691ab7359418ac90ccbf77c177c0fc7c94",
      "parents": [
        "0bc545db15bbdb5128bc894ecc8b26ec0f1b5517"
      ],
      "author": {
        "name": "JSid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Wed Jan 30 21:01:51 2019"
      },
      "committer": {
        "name": "JSid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Wed Jan 30 21:01:51 2019"
      },
      "message": "Updated pod version, added comments and a missing import in public header\n"
    },
    {
      "commit": "0bc545db15bbdb5128bc894ecc8b26ec0f1b5517",
      "tree": "e46fbc8177cb96421180df860f3028fee7f004d4",
      "parents": [
        "791d06c5e797c123da0bdd16dbe31be185bf560c",
        "1fcdc774696c9d7247dc2f6f85862bb2158d2770"
      ],
      "author": {
        "name": "SidJ",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Fri Dec 07 21:44:15 2018"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Dec 07 21:44:15 2018"
      },
      "message": "Merge pull request #7 from niksawtschuk/tappable-area-apple\n\nuse 44pt as the default minimum size for tappable elements"
    },
    {
      "commit": "791d06c5e797c123da0bdd16dbe31be185bf560c",
      "tree": "7cbd9cbf90ecf4be0cdc38e9ec9432910c7679dd",
      "parents": [
        "36f0c459dd7e836cde69e4ac4c0da33f99fa77fe",
        "4513416d5bbb11204c10f1bae35231ab88abe582"
      ],
      "author": {
        "name": "SidJ",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Mon Nov 05 17:44:25 2018"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Nov 05 17:44:25 2018"
      },
      "message": "Merge pull request #9 from freginold/freginold-patch-1\n\nupdate grammar/style in README.md"
    },
    {
      "commit": "4513416d5bbb11204c10f1bae35231ab88abe582",
      "tree": "7cbd9cbf90ecf4be0cdc38e9ec9432910c7679dd",
      "parents": [
        "36f0c459dd7e836cde69e4ac4c0da33f99fa77fe"
      ],
      "author": {
        "name": "freginold",
        "email": "freginold@users.noreply.github.com",
        "time": "Sat Nov 03 04:12:17 2018"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Nov 03 04:12:17 2018"
      },
      "message": "update grammar/style in README.md\n\ncorrect typos in punctuation/grammar and update style for consistency"
    },
    {
      "commit": "36f0c459dd7e836cde69e4ac4c0da33f99fa77fe",
      "tree": "213e4df94136675ea311be107d4c8d8a20397d5b",
      "parents": [
        "2de43839c69270dc8b06580aa363cf7d272feb23"
      ],
      "author": {
        "name": "JSid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Fri Nov 02 22:44:44 2018"
      },
      "committer": {
        "name": "JSid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Fri Nov 02 22:44:44 2018"
      },
      "message": "Internal Sync: minor fixes to README, new contrast check for UITextView (in addition to UILabel that already existed) and tests and lint fixes for globals in tests.\n"
    },
    {
      "commit": "2de43839c69270dc8b06580aa363cf7d272feb23",
      "tree": "d7ed35dc86f17991d4d5f088850f672180968cac",
      "parents": [
        "97da73c5515443dfd7f5150e8fd07f01cc7a8f74",
        "1ac98ddb8f13d801362c823802a7acbb477ef08b"
      ],
      "author": {
        "name": "SidJ",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Wed Oct 24 17:44:31 2018"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Oct 24 17:44:31 2018"
      },
      "message": "Merge pull request #5 from niksawtschuk/carthage-support\n\nAdded Carthage Support"
    },
    {
      "commit": "1fcdc774696c9d7247dc2f6f85862bb2158d2770",
      "tree": "e620599d6ec3c8ce7bb79e50378be88ea293a651",
      "parents": [
        "97da73c5515443dfd7f5150e8fd07f01cc7a8f74"
      ],
      "author": {
        "name": "Nik Sawtschuk",
        "email": "nik@sawtschuk.com",
        "time": "Wed Oct 17 15:15:06 2018"
      },
      "committer": {
        "name": "Nik Sawtschuk",
        "email": "nik@sawtschuk.com",
        "time": "Wed Oct 17 15:45:57 2018"
      },
      "message": "use 44pt as the default minimum size for tappable elements, as recommended by Apple.\n"
    },
    {
      "commit": "1ac98ddb8f13d801362c823802a7acbb477ef08b",
      "tree": "d7ed35dc86f17991d4d5f088850f672180968cac",
      "parents": [
        "5e4355d81a8cc519537a98302b8f8526e8d39423"
      ],
      "author": {
        "name": "Nik Sawtschuk",
        "email": "nik@sawtschuk.com",
        "time": "Tue Oct 16 20:39:06 2018"
      },
      "committer": {
        "name": "Nik Sawtschuk",
        "email": "nik@sawtschuk.com",
        "time": "Tue Oct 16 20:39:06 2018"
      },
      "message": "add carthage compatibility badge to README\n"
    },
    {
      "commit": "5e4355d81a8cc519537a98302b8f8526e8d39423",
      "tree": "d477c499a23f543c0f2143b3d76051c775c80e7f",
      "parents": [
        "7022b619be2be2f240ab561d9be124c90dda23e8"
      ],
      "author": {
        "name": "Nik Sawtschuk",
        "email": "nik@sawtschuk.com",
        "time": "Tue Oct 16 19:44:10 2018"
      },
      "committer": {
        "name": "Nik Sawtschuk",
        "email": "nik@sawtschuk.com",
        "time": "Tue Oct 16 19:44:10 2018"
      },
      "message": "mark the Framework Scheme as Shared\n"
    },
    {
      "commit": "7022b619be2be2f240ab561d9be124c90dda23e8",
      "tree": "7a91acbf89d09574023bd07a0d14d3bae8c7a58b",
      "parents": [
        "97da73c5515443dfd7f5150e8fd07f01cc7a8f74"
      ],
      "author": {
        "name": "Nik Sawtschuk",
        "email": "nik@sawtschuk.com",
        "time": "Tue Oct 16 19:36:47 2018"
      },
      "committer": {
        "name": "Nik Sawtschuk",
        "email": "nik@sawtschuk.com",
        "time": "Tue Oct 16 19:36:47 2018"
      },
      "message": "add basic gitignore\n"
    },
    {
      "commit": "97da73c5515443dfd7f5150e8fd07f01cc7a8f74",
      "tree": "26ea43663207e3a47affc344fc3b752449b51001",
      "parents": [
        "3e09baa61b2c13fe98029d53b1783f4ca9edaabf",
        "c980aff2f72099979890d5ab5922b7567a0b3168"
      ],
      "author": {
        "name": "SidJ",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Fri Oct 12 17:18:58 2018"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Oct 12 17:18:58 2018"
      },
      "message": "Merge pull request #3 from mattmoncur/readme-code-snippet-syntax-highlighting\n\nREADME Markdown Syntax Highlighting"
    },
    {
      "commit": "c980aff2f72099979890d5ab5922b7567a0b3168",
      "tree": "26ea43663207e3a47affc344fc3b752449b51001",
      "parents": [
        "3e09baa61b2c13fe98029d53b1783f4ca9edaabf"
      ],
      "author": {
        "name": "Matt Moncur",
        "email": "matty.moncur@gmail.com",
        "time": "Fri Oct 12 14:44:59 2018"
      },
      "committer": {
        "name": "Matt Moncur",
        "email": "matty.moncur@gmail.com",
        "time": "Fri Oct 12 14:44:59 2018"
      },
      "message": "add objective-c for markdown syntax highlighting in README.md\n\n"
    },
    {
      "commit": "3e09baa61b2c13fe98029d53b1783f4ca9edaabf",
      "tree": "fbaedfd832dd78f1396e9913ccb63e92d368c2c6",
      "parents": [
        "61eb9829353656f40c46da50af2988339092af9b"
      ],
      "author": {
        "name": "JSid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Fri Aug 10 22:41:41 2018"
      },
      "committer": {
        "name": "JSid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Fri Aug 10 22:41:41 2018"
      },
      "message": "Updated podspec to 2.0\n"
    },
    {
      "commit": "61eb9829353656f40c46da50af2988339092af9b",
      "tree": "3202e834efa3a811b83036f68994fe3490791d05",
      "parents": [
        "2d2bf1408cfee8559cd672129959bba54a5cfa2b"
      ],
      "author": {
        "name": "JSid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Fri Aug 10 22:34:52 2018"
      },
      "committer": {
        "name": "JSid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Fri Aug 10 22:34:52 2018"
      },
      "message": "Internal Sync for 2.0\n"
    },
    {
      "commit": "2d2bf1408cfee8559cd672129959bba54a5cfa2b",
      "tree": "1800b1adefd1683e635b55a605eaf91035cf17ee",
      "parents": [
        "197f283df754d07408b43053a84ba3e783ce4cc8"
      ],
      "author": {
        "name": "SidJ",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Mon May 21 22:45:24 2018"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 21 22:45:24 2018"
      },
      "message": "Added docs for GTXToolKit APIs"
    },
    {
      "commit": "197f283df754d07408b43053a84ba3e783ce4cc8",
      "tree": "b8084d2ecac6bfc9882310261ca2463b5f3d75af",
      "parents": [
        "fe4ac00283cfc71c8958dce67b583ffe97e72dad"
      ],
      "author": {
        "name": "SidJ",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Thu May 17 17:18:45 2018"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 17 17:18:45 2018"
      },
      "message": "Added missing import in README"
    },
    {
      "commit": "fe4ac00283cfc71c8958dce67b583ffe97e72dad",
      "tree": "99c70b46da369ce4c1e016951bea29083bb689ca",
      "parents": [
        "067f8311d0ad426cb77ff7397b715cf07c3e6038"
      ],
      "author": {
        "name": "JSid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Wed May 16 21:36:52 2018"
      },
      "committer": {
        "name": "JSid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Wed May 16 21:36:52 2018"
      },
      "message": "Updated podspec for 1.0 release\n"
    },
    {
      "commit": "067f8311d0ad426cb77ff7397b715cf07c3e6038",
      "tree": "00da79fe81c89f74649e510884e301cf13220f6e",
      "parents": [
        "57b4f47c572f659e07c4bd2d7e6b7d636d1ec9ba"
      ],
      "author": {
        "name": "JSid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Wed May 16 21:21:29 2018"
      },
      "committer": {
        "name": "JSid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Wed May 16 21:21:29 2018"
      },
      "message": "Updated checks collection APIs used to get built in checks and README to reflect those changes and also some additional examples.\n"
    },
    {
      "commit": "57b4f47c572f659e07c4bd2d7e6b7d636d1ec9ba",
      "tree": "2daa1ffac86cc768d797bb8f555c7e0d119058a3",
      "parents": [
        "09475ac0f2c26c2bb540ecd2cfedf1f65e3c1112"
      ],
      "author": {
        "name": "j-sid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Wed Mar 21 05:28:28 2018"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Mar 21 05:28:28 2018"
      },
      "message": "Update README.md"
    },
    {
      "commit": "09475ac0f2c26c2bb540ecd2cfedf1f65e3c1112",
      "tree": "3167af37c8fbc6ed60c6c28cb08a5d0dae34bb7e",
      "parents": [
        "2705f03228f0654e664e1f7b2428cfad01a97eb7"
      ],
      "author": {
        "name": "j-sid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Wed Mar 21 03:46:58 2018"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Mar 21 03:46:58 2018"
      },
      "message": "Update README.md"
    },
    {
      "commit": "2705f03228f0654e664e1f7b2428cfad01a97eb7",
      "tree": "ef2717be582d20a34262355751563d20dadc5617",
      "parents": [
        "4f2c77c164bd2d90e96934944f8b29b51273a8ad"
      ],
      "author": {
        "name": "j-sid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Tue Mar 20 22:58:36 2018"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Mar 20 22:58:36 2018"
      },
      "message": "Added deps instructions"
    },
    {
      "commit": "4f2c77c164bd2d90e96934944f8b29b51273a8ad",
      "tree": "92733d4a7f3f2b679bb145e87f7893596ecece42",
      "parents": [
        "c78475615e2da745c3dd1ff2f284bf61cb2e3598"
      ],
      "author": {
        "name": "Sid Janga",
        "email": "siddarthaj@siddarthaj-macbookpro2.roam.corp.google.com",
        "time": "Tue Mar 20 22:21:47 2018"
      },
      "committer": {
        "name": "Sid Janga",
        "email": "siddarthaj@siddarthaj-macbookpro2.roam.corp.google.com",
        "time": "Tue Mar 20 22:21:47 2018"
      },
      "message": "Added podspec v0\n"
    },
    {
      "commit": "c78475615e2da745c3dd1ff2f284bf61cb2e3598",
      "tree": "79c557ae08f90c8ffeb31c91dc400770dc73feee",
      "parents": [
        "2990a546cdf1e82b456af8c7af01035d1c7433d9"
      ],
      "author": {
        "name": "j-sid",
        "email": "7937756+j-sid@users.noreply.github.com",
        "time": "Tue Mar 20 21:35:59 2018"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Mar 20 21:35:59 2018"
      },
      "message": "Update README links"
    },
    {
      "commit": "2990a546cdf1e82b456af8c7af01035d1c7433d9",
      "tree": "34d686cbddee5a3aa522989e3b427aae53e88192",
      "parents": [
        "8eb1d93435ed5df9ff80a3840947c50265f9965b"
      ],
      "author": {
        "name": "Sid Janga",
        "email": "siddarthaj@siddarthaj-macbookpro2.roam.corp.google.com",
        "time": "Tue Mar 20 21:22:56 2018"
      },
      "committer": {
        "name": "Sid Janga",
        "email": "siddarthaj@siddarthaj-macbookpro2.roam.corp.google.com",
        "time": "Tue Mar 20 21:22:56 2018"
      },
      "message": "some renames and removed outdated docs\n"
    },
    {
      "commit": "8eb1d93435ed5df9ff80a3840947c50265f9965b",
      "tree": "d417fcf3e0dfbe3fea73f034b351c106d7be25a6",
      "parents": [],
      "author": {
        "name": "Sid Janga",
        "email": "siddarthaj@siddarthaj-macbookpro2.roam.corp.google.com",
        "time": "Tue Mar 20 17:35:14 2018"
      },
      "committer": {
        "name": "Sid Janga",
        "email": "siddarthaj@siddarthaj-macbookpro2.roam.corp.google.com",
        "time": "Tue Mar 20 17:35:14 2018"
      },
      "message": "Base Revision\n"
    }
  ]
}
