Skip to content

Releases: smartive/flutter-design-system-generator

v6.0.0

24 Sep 09:29

Choose a tag to compare

6.0.0 (2025-09-24)

  • chore(deps)!: update dependencies (#24) (c5a58aa)

Features

BREAKING CHANGES

    • Updates minimum supported SDK version to Dart 3.8.
  • Use build 4.0.0

v5.1.0

25 Feb 12:08

Choose a tag to compare

5.1.0 (2025-02-25)

Features

v5.0.0

10 Feb 10:30

Choose a tag to compare

5.0.0 (2025-02-10)

  • ci: use service account for publishing to pubDev (#13) (7a76173)
  • chore!: bump to v5.0.0 (#12) (dc25b9e)
  • ci: update cycjimmy/semantic-release-action from v3 to v4 (#11) (7aef10d)
  • chore(deps)!: update dart_style from v2 to v3 (#10) (9c9d3e2)

BREAKING CHANGES

  • Use caret syntax for dependencies
  • Use latestLanguageVersion in DartFormatter. This is required for compatibility with dart_style v3.

v4.1.0

12 Dec 13:34

Choose a tag to compare

4.1.0 (2023-12-12)

Features

  • add icon size and border width generators (#9) (c64df60)

v4.0.0

29 Aug 08:13

Choose a tag to compare

4.0.0 (2023-08-29)

Features

BREAKING CHANGES

  • This removes the binary executable
    from the package and re-introduces the build_runner system.
    It allows multiple design systems to be configured
    and is more aligned to the "standard" dart build
    behaviour. To migrate: Move the design-system.json
    file into the lib/ folder and give it another name,
    such as app.design-system.json. Then remove your
    ref to the binary dart run design_system_generator generate
    and just run dart run build_runner build instead.

v3.2.0

30 Jun 13:15

Choose a tag to compare

3.2.0 (2023-06-30)

Features

  • add typography text style generator (#5) (700a1c9)

v3.1.1

27 Jun 08:30

Choose a tag to compare

3.1.1 (2023-06-27)

Bug Fixes

  • colors: correctly attach prefixes and create camelCase names. (2f854e8)

v3.1.0

22 Jun 12:45

Choose a tag to compare

3.1.0 (2023-06-22)

Features

  • allow "false" as constant to disable specific branch of generation (#4) (273205d)

v3.0.0

12 Jun 11:41

Choose a tag to compare

3.0.0 (2023-06-12)

Features

  • upgrade to new flutter app and improve code generation. (#3) (44d4e1e)

BREAKING CHANGES

  • Flutter 2.x is not supported
    anymore. This upgrades the generator to SDK

= 3.x && < 4.x. Projects that use the generator
need to update their Flutter project to use SDK
= 3.x.

v2.0.0

23 Mar 08:18

Choose a tag to compare

2.0.0 (2023-03-23)

Features

BREAKING CHANGES

  • since the dart build
    system is not as dynamic as it should be for
    this usecase, using a builder is not
    sufficient. Now a CLI executable
    is used to find and parse the design system
    configuration and then generate the
    specific design token files according to
    the configuration.