Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision
  • master
  • v1.0.0
  • v1.1.0
  • v1.1.1
  • v1.10.0
  • v1.10.1
  • v1.10.2
  • v1.11.0
  • v1.12.0
  • v1.13.0
  • v1.13.1
  • v1.13.2
  • v1.14.0
  • v1.15.0
  • v1.16.0
  • v1.16.1
  • v1.16.2
  • v1.16.3
  • v1.16.4
  • v1.16.5
  • v1.2.0
  • v1.2.1
  • v1.2.2
  • v1.2.3
  • v1.3.0
  • v1.3.1
  • v1.4.0
  • v1.5.0
  • v1.6.0
  • v1.7.0
  • v1.8.0
  • v1.8.1
  • v1.8.2
  • v1.8.3
  • v1.9.0
35 results

Target

Select target project
  • oss/libraries/go/application/xflags
1 result
Select Git revision
  • master
  • v1.0.0
  • v1.1.0
  • v1.1.1
  • v1.10.0
  • v1.10.1
  • v1.10.2
  • v1.11.0
  • v1.12.0
  • v1.13.0
  • v1.13.1
  • v1.13.2
  • v1.14.0
  • v1.15.0
  • v1.16.0
  • v1.16.1
  • v1.16.2
  • v1.16.3
  • v1.16.4
  • v1.16.5
  • v1.2.0
  • v1.2.1
  • v1.2.2
  • v1.2.3
  • v1.3.0
  • v1.3.1
  • v1.4.0
  • v1.5.0
  • v1.6.0
  • v1.7.0
  • v1.8.0
  • v1.8.1
  • v1.8.2
  • v1.8.3
  • v1.9.0
35 results
Show changes
Commits on Source (3)
<a name="v1.2.2"></a>
## [v1.2.2] - 2022-10-06
### Changes
- chore add licenses
<a name="v1.2.1"></a>
## [v1.2.1] - 2022-10-06
### Changes
......@@ -27,6 +33,7 @@
<a name="v1.0.0"></a>
## v1.0.0 - 2022-10-04
[v1.2.2]: https://gitlab.schukai.com/oss/libraries/go/application/xflags/compare/v1.2.1...v1.2.2
[v1.2.1]: https://gitlab.schukai.com/oss/libraries/go/application/xflags/compare/v1.2.0...v1.2.1
[v1.2.0]: https://gitlab.schukai.com/oss/libraries/go/application/xflags/compare/v1.1.1...v1.2.0
[v1.1.1]: https://gitlab.schukai.com/oss/libraries/go/application/xflags/compare/v1.1.0...v1.1.1
......
......@@ -141,5 +141,17 @@ endif
fetch-licenses:
go-licenses save $(GO_CURRENT_MODULE) --ignore gitlab.schukai.com --force --save_path $(PROJECT_ROOT)licenses/ ; cd -
# https://spdx.github.io/spdx-spec/v2.3/SPDX-license-list/
ADDLICENSE_BIN ?= addlicense
ifeq ($(shell command -v $(ADDLICENSE_BIN) 2> /dev/null),)
$(shell go install github.com/google/addlicense@latest)
EXECUTABLES = $(EXECUTABLES:-) $(ADDLICENSE_BIN);
endif
.PHONY: add-licenses
## Add license headers to all go files
add-licenses:
addlicense -c "schukai GmbH" -s -l "AGPL-3.0-or-later" ./*.go
// Copyright 2022 schukai GmbH. All rights reserved.
// Use of this source code is governed by a AGPL-3.0
// license that can be found in the LICENSE file.
// Copyright 2022 schukai GmbH
// SPDX-License-Identifier: AGPL-3.0-or-later
package xflags
......
// Copyright 2022 schukai GmbH. All rights reserved.
// Use of this source code is governed by a AGPL-3.0
// license that can be found in the LICENSE file.
// Copyright 2022 schukai GmbH
// SPDX-License-Identifier: AGPL-3.0-or-later
package xflags
......
// Copyright 2022 schukai GmbH. All rights reserved.
// Use of this source code is governed by a AGPL-3.0
// license that can be found in the LICENSE file.
// Copyright 2022 schukai GmbH
// SPDX-License-Identifier: AGPL-3.0-or-later
package xflags
......
// Copyright 2022 schukai GmbH. All rights reserved.
// Use of this source code is governed by a AGPL-3.0
// license that can be found in the LICENSE file.
// Copyright 2022 schukai GmbH
// SPDX-License-Identifier: AGPL-3.0-or-later
package xflags
......
// Copyright 2022 schukai GmbH. All rights reserved.
// Use of this source code is governed by a AGPL-3.0
// license that can be found in the LICENSE file.
// Copyright 2022 schukai GmbH
// SPDX-License-Identifier: AGPL-3.0-or-later
// This package provides a simple way to create a CLI application
// with subcommands. It is based on the flags package from
......
// Copyright 2022 schukai GmbH. All rights reserved.
// Use of this source code is governed by a AGPL-3.0
// license that can be found in the LICENSE file.
// Copyright 2022 schukai GmbH
// SPDX-License-Identifier: AGPL-3.0-or-later
package xflags
......
// Copyright 2022 schukai GmbH. All rights reserved.
// Use of this source code is governed by a AGPL-3.0
// license that can be found in the LICENSE file.
// Copyright 2022 schukai GmbH
// SPDX-License-Identifier: AGPL-3.0-or-later
package xflags
......
// Copyright 2022 schukai GmbH. All rights reserved.
// Use of this source code is governed by a AGPL-3.0
// license that can be found in the LICENSE file.
// Copyright 2022 schukai GmbH
// SPDX-License-Identifier: AGPL-3.0-or-later
package xflags
......
// Copyright 2022 schukai GmbH. All rights reserved.
// Use of this source code is governed by a AGPL-3.0
// license that can be found in the LICENSE file.
// Copyright 2022 schukai GmbH
// SPDX-License-Identifier: AGPL-3.0-or-later
package xflags
......
// Copyright 2022 schukai GmbH. All rights reserved.
// Use of this source code is governed by a AGPL-3.0
// license that can be found in the LICENSE file.
// Copyright 2022 schukai GmbH
// SPDX-License-Identifier: AGPL-3.0-or-later
package xflags
......
// Copyright 2022 schukai GmbH. All rights reserved.
// Use of this source code is governed by a AGPL-3.0
// license that can be found in the LICENSE file.
// Copyright 2022 schukai GmbH
// SPDX-License-Identifier: AGPL-3.0-or-later
package xflags
......
// Copyright 2022 schukai GmbH. All rights reserved.
// Use of this source code is governed by a AGPL-3.0
// license that can be found in the LICENSE file.
// Copyright 2022 schukai GmbH
// SPDX-License-Identifier: AGPL-3.0-or-later
package xflags
......
// Copyright 2022 schukai GmbH. All rights reserved.
// Use of this source code is governed by a AGPL-3.0
// license that can be found in the LICENSE file.
// Copyright 2022 schukai GmbH
// SPDX-License-Identifier: AGPL-3.0-or-later
package xflags
......
// Copyright 2022 schukai GmbH. All rights reserved.
// Use of this source code is governed by a AGPL-3.0
// license that can be found in the LICENSE file.
// Copyright 2022 schukai GmbH
// SPDX-License-Identifier: AGPL-3.0-or-later
package xflags
......
// Copyright 2022 schukai GmbH. All rights reserved.
// Use of this source code is governed by a AGPL-3.0
// license that can be found in the LICENSE file.
// Copyright 2022 schukai GmbH
// SPDX-License-Identifier: AGPL-3.0-or-later
package xflags
......
// Copyright 2022 schukai GmbH. All rights reserved.
// Use of this source code is governed by a AGPL-3.0
// license that can be found in the LICENSE file.
// Copyright 2022 schukai GmbH
// SPDX-License-Identifier: AGPL-3.0-or-later
package xflags
......
{"version":"1.2.1"}
{"version":"1.2.2"}
// Copyright 2022 schukai GmbH. All rights reserved.
// Use of this source code is governed by a AGPL-3.0
// license that can be found in the LICENSE file.
// Copyright 2022 schukai GmbH
// SPDX-License-Identifier: AGPL-3.0-or-later
package xflags
......