Skip to content

Commit

Permalink
docs: update changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Vincenzo Palazzo <[email protected]>
  • Loading branch information
vincenzopalazzo committed Dec 13, 2024
1 parent 651d75c commit 19bae5a
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 2 deletions.
36 changes: 36 additions & 0 deletions packages/flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
description = "Flutter";
inputs = {
nixpkgs-unstable.url = "github:NixOS/nixpkgs/master";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, nixpkgs-unstable, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs-unstable {
inherit system;
config = {
android_sdk.accept_license = true;
allowUnfree = true;
};
};
buildToolsVersion = "33.0.2";
androidComposition = pkgs.androidenv.composeAndroidPackages {
buildToolsVersions = [ buildToolsVersion ];
platformVersions = [ "33" ];
abiVersions = [ "arm64-v8a" ];
};
androidSdk = androidComposition.androidsdk;
in
{
devShell =
with pkgs; mkShell rec {
ANDROID_SDK_ROOT = "${androidSdk}/libexec/android-sdk";
buildInputs = [
flutter
androidSdk
jdk11
];
};
});
}
6 changes: 6 additions & 0 deletions packages/graphql/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v5.2.0-beta.10

## Fixed
- update normalize dependency to version 0.9.1 (#1448) ([commit](https://github.com/zino-hofmann/graphql-flutter/commit/9e21fd5c0d951f2a24d9646f548202c7f47807f7)). @nrbnlulu 11-09-2024


# v5.2.0-beta.9

## Fixed
Expand Down
2 changes: 1 addition & 1 deletion packages/graphql/changelog.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"package_name": "graphql",
"version": "v5.2.0-beta.9",
"version": "v5.2.0-beta.10",
"api": {
"name": "github",
"repository": "zino-hofmann/graphql-flutter",
Expand Down
3 changes: 3 additions & 0 deletions packages/graphql_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# v5.2.0-beta.8


# v5.2.0-beta.7

## Fixed
Expand Down
2 changes: 1 addition & 1 deletion packages/graphql_flutter/changelog.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"package_name": "graphql_flutter",
"version": "v5.2.0-beta.7",
"version": "v5.2.0-beta.8",
"api": {
"name": "github",
"repository": "zino-hofmann/graphql-flutter",
Expand Down

0 comments on commit 19bae5a

Please sign in to comment.