• v0.7.1 26999f5f2c

    Version 0.7.1 Stable

    cadey released this 2020-10-25 19:38:37 +00:00 | 2 commits to main since this release

    Fix a minor parsing bug

    Downloads
  • v0.7.0 1a0bd1fcc8

    Version 0.7.0 Stable

    cadey released this 2020-10-25 19:36:18 +00:00 | 3 commits to main since this release

    Support reading version data from Cargo.toml

    Downloads
  • v0.6.1 8b55a1cfcf

    Version 0.6.1 Stable

    cadey released this 2020-09-26 23:14:53 +00:00 | 8 commits to main since this release

    Fixed a logic error in release cutting.

    Downloads
  • v0.5.2 8c4017a3b3

    Version 0.5.2 Stable

    cadey released this 2020-08-08 20:18:25 +00:00 | 10 commits to main since this release

    Detect tags better.

    Downloads
  • v0.5.1 e1db8c4df4

    Version 0.5.1 Stable

    cadey released this 2020-08-06 18:54:53 +00:00 | 11 commits to main since this release

    Initialize pretty_env_logger on app boot. Oops.

    Downloads
  • v0.5.0 e3a9f34178

    Version 0.5.0 Stable

    cadey released this 2020-07-09 19:28:01 +00:00 | 12 commits to main since this release

    A lot of internals to this program were exposed to external consumers. This was
    used to provide an integration test.
    Support for bracketed versions was added, a-la:

    ## [0.1.0]
    
    Hi there this is a test!
    
    ### ADDED
    
    - something
    

    The gitea crate was brought up to version 0.2.0 and includes a lot more
    functionality.

    Downloads
  • 0.4.0 5776b802a1

    Version 0.4.0 Stable

    cadey released this 2020-07-08 23:19:38 +00:00 | 21 commits to main since this release

    This is a functionality-breaking release that removes untested/extraneous parts
    of this project.

    ADDED

    • The gitea client embedded into this repo is now a more generic crate that can
      be reused across other projects.
    • Gitea types have been simplified and redundant types have been removed.
    • Simple tests for the gitea crate.
    • A name generator elfs was created for future use in integration testing.

    CHANGED

    • release is renamed to cut, but there is an alias for the old release
      subcommand name.

    REMOVED

    • All functionality but the drone plugin and release commands.
    Downloads
  • 0.3.2 dc2019b86d

    Version 0.3.2 Stable

    cadey released this 2020-06-12 12:20:14 +00:00 | 32 commits to main since this release

    Automagically fetch tags when running as a drone plugin.

    Downloads
  • 0.3.1 927bbcd4d7

    Version 0.3.1 Stable

    cadey released this 2020-06-12 11:55:24 +00:00 | 35 commits to main since this release

    Hotfix in json parsing

    Downloads
  • 0.3.0 24b04905ba

    Version 0.3.0 Stable

    cadey released this 2020-06-12 11:18:13 +00:00 | 39 commits to main since this release

    Allows for a customizable default branch name for the drone plugin using either
    a hard-coded value or the Gitea api to fetch it. For compatibility's sake, the
    default behavior is to fetch the default branch name from the Gitea api. If you
    need to hard-code your default branch name, add the config like this:

      - name: auto-release
        image: xena/gitea-release:0.3.0
        settings:
          auth_username: cadey
          default_branch: trunk
          gitea_server: https://tulpa.dev
          gitea_token:
            from_secret: GITEA_TOKEN
        when:
          event:
            - push
          branch:
            - trunk
    

    Also fixed a suggestion to fetch tags over git before trying to run this in Drone.

    Downloads