Uniformisation of version number (0.9)
Some checks failed
gitea-openium/resgen.swift/pipeline/head There was a failure building this commit

This commit is contained in:
Thibaut Schmitt 2022-08-29 13:43:06 +02:00
parent a54a264447
commit eef92dc569
8 changed files with 15 additions and 14 deletions

View File

@ -5,8 +5,8 @@
// Created by Thibaut Schmitt on 20/12/2021. // Created by Thibaut Schmitt on 20/12/2021.
// //
import Foundation
import ToolCore import ToolCore
import Foundation
import ArgumentParser import ArgumentParser
struct ColorTool: ParsableCommand { struct ColorTool: ParsableCommand {
@ -15,7 +15,7 @@ struct ColorTool: ParsableCommand {
static var configuration = CommandConfiguration( static var configuration = CommandConfiguration(
abstract: "A utility for generate colors assets and their getters.", abstract: "A utility for generate colors assets and their getters.",
version: "0.1.0" version: ResgenSwiftVersion
) )
// MARK: - Static // MARK: - Static

View File

@ -5,8 +5,8 @@
// Created by Thibaut Schmitt on 13/12/2021. // Created by Thibaut Schmitt on 13/12/2021.
// //
import Foundation
import ToolCore import ToolCore
import Foundation
import ArgumentParser import ArgumentParser
struct FontTool: ParsableCommand { struct FontTool: ParsableCommand {
@ -15,7 +15,7 @@ struct FontTool: ParsableCommand {
static var configuration = CommandConfiguration( static var configuration = CommandConfiguration(
abstract: "A utility to generate an helpful etension to access your custom font from code and also Info.plist UIAppsFont content.", abstract: "A utility to generate an helpful etension to access your custom font from code and also Info.plist UIAppsFont content.",
version: "0.1.0" version: ResgenSwiftVersion
) )
// MARK: - Static // MARK: - Static

View File

@ -5,9 +5,9 @@
// Created by Thibaut Schmitt on 24/01/2022. // Created by Thibaut Schmitt on 24/01/2022.
// //
import ToolCore
import Foundation import Foundation
import ArgumentParser import ArgumentParser
import ToolCore
struct Imagium: ParsableCommand { struct Imagium: ParsableCommand {
@ -15,7 +15,7 @@ struct Imagium: ParsableCommand {
static var configuration = CommandConfiguration( static var configuration = CommandConfiguration(
abstract: "A utility for generate images and an extension to access them easily.", abstract: "A utility for generate images and an extension to access them easily.",
version: "0.1.0" version: ResgenSwiftVersion
) )
// MARK: - Static // MARK: - Static

View File

@ -5,8 +5,8 @@
// Created by Thibaut Schmitt on 10/01/2022. // Created by Thibaut Schmitt on 10/01/2022.
// //
import Foundation
import ToolCore import ToolCore
import Foundation
import ArgumentParser import ArgumentParser
struct Stringium: ParsableCommand { struct Stringium: ParsableCommand {
@ -15,7 +15,7 @@ struct Stringium: ParsableCommand {
static var configuration = CommandConfiguration( static var configuration = CommandConfiguration(
abstract: "Generate strings with custom scripts.", abstract: "Generate strings with custom scripts.",
version: "0.1.0" version: ResgenSwiftVersion
) )
// MARK: - Static // MARK: - Static

View File

@ -5,8 +5,8 @@
// Created by Thibaut Schmitt on 10/01/2022. // Created by Thibaut Schmitt on 10/01/2022.
// //
import Foundation
import ToolCore import ToolCore
import Foundation
import ArgumentParser import ArgumentParser
struct Tags: ParsableCommand { struct Tags: ParsableCommand {
@ -15,7 +15,7 @@ struct Tags: ParsableCommand {
static var configuration = CommandConfiguration( static var configuration = CommandConfiguration(
abstract: "Generate tags extension file.", abstract: "Generate tags extension file.",
version: "0.1.0" version: ResgenSwiftVersion
) )

View File

@ -5,8 +5,8 @@
// Created by Thibaut Schmitt on 10/01/2022. // Created by Thibaut Schmitt on 10/01/2022.
// //
import Foundation
import ToolCore import ToolCore
import Foundation
import ArgumentParser import ArgumentParser
struct Twine: ParsableCommand { struct Twine: ParsableCommand {
@ -15,7 +15,7 @@ struct Twine: ParsableCommand {
static var configuration = CommandConfiguration( static var configuration = CommandConfiguration(
abstract: "Generate strings with twine.", abstract: "Generate strings with twine.",
version: "0.1.0" version: ResgenSwiftVersion
) )
// MARK: - Static // MARK: - Static

View File

@ -5,6 +5,7 @@
// Created by Thibaut Schmitt on 10/01/2022. // Created by Thibaut Schmitt on 10/01/2022.
// //
import ToolCore
import Foundation import Foundation
import ArgumentParser import ArgumentParser
@ -12,7 +13,7 @@ struct Strings: ParsableCommand {
static var configuration = CommandConfiguration( static var configuration = CommandConfiguration(
abstract: "A utility for generate strings.", abstract: "A utility for generate strings.",
version: "0.1.0", version: ResgenSwiftVersion,
// Pass an array to `subcommands` to set up a nested tree of subcommands. // Pass an array to `subcommands` to set up a nested tree of subcommands.
// With language support for type-level introspection, this could be // With language support for type-level introspection, this could be

View File

@ -7,4 +7,4 @@
import Foundation import Foundation
public let ResgenSwiftVersion = "1.0.0" public let ResgenSwiftVersion = "0.9"