Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Documentation/RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ When doing a Swift Protobuf library release:
1. Update the version on _main_

```
DevTools/LibraryVersions.py [a.b.c]
scripts/LibraryVersions.py [a.b.c]
```

If you aren't sure if `b` or `c`, rather then checking all the _semver_ tags on the
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ test-all test-everything: test

# Check the version numbers are all in sync.
check-version-numbers:
@DevTools/LibraryVersions.py --validate
@scripts/LibraryVersions.py --validate

#
# The Swift test suite includes unit tests for the runtime library
Expand Down
4 changes: 2 additions & 2 deletions DevTools/CopyrightFixup.sh → scripts/CopyrightFixup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

set -eu

readonly DevToolsDir=$(dirname "$(echo $0 | sed -e "s,^\([^/]\),$(pwd)/\1,")")
readonly RootDir="${DevToolsDir}/.."
readonly ScriptsDir=$(dirname "$(echo $0 | sed -e "s,^\([^/]\),$(pwd)/\1,")")
readonly RootDir="${ScriptsDir}/.."

cd "${RootDir}"

Expand Down
2 changes: 1 addition & 1 deletion DevTools/LibraryVersions.py → scripts/LibraryVersions.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#! /usr/bin/python3
# DevTools/LibraryVersions.py - Helper for the library's version number
# scripts/LibraryVersions.py - Helper for the library's version number
#
# Copyright (c) 2014 - 2017 Apple Inc. and the project authors
# Licensed under Apache License v2.0 with Runtime Library Exception
Expand Down