From 11bb1bff38a202e9005a40b071de2b68154a2caa Mon Sep 17 00:00:00 2001 From: Anders Bergh Date: Mon, 31 Oct 2016 20:52:09 +0100 Subject: [PATCH] OS X -> macOS, bump version --- README.md | 4 ++-- sf-pwgen.m | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index c731b62..857e679 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ [![Build Status](https://travis-ci.org/anders/pwgen.svg?branch=master)](https://travis-ci.org/anders/pwgen) `sf-pwgen` is a command line tool which generates passwords using the -SecurityFoundation framework in OS X. It runs on Mountain Lion and later. +SecurityFoundation framework in macOS. It runs on Mountain Lion and later. - sf-pwgen 1.2: OS X password generator + sf-pwgen 1.4: macOS password generator Anders Bergh usage: ./sf-pwgen [options] diff --git a/sf-pwgen.m b/sf-pwgen.m index 0d46d86..0b31f0a 100644 --- a/sf-pwgen.m +++ b/sf-pwgen.m @@ -1,5 +1,5 @@ /* - * sf-pwgen.m -- OS X command line password generator + * sf-pwgen.m -- macOS command line password generator * Copyright (c) 2012-2014 Anders Bergh * * This software is provided 'as-is', without any express or implied @@ -32,7 +32,7 @@ #import "SFPasswordAssistant.h" #define PROJECT "sf-pwgen" -#define VERSION "1.3" +#define VERSION "1.4" #define PASS_MIN_LENGTH 8 #define PASS_MAX_LENGTH 31 @@ -49,7 +49,7 @@ static void usage(const char *argv0) { NSArray *languages = [policy[@"Languages-Evaluate"] componentsSeparatedByString:@","]; - printf(PROJECT " " VERSION ": OS X password generator\n"); + printf(PROJECT " " VERSION ": macOS password generator\n"); printf("Anders Bergh \n\n"); printf("usage: %s [options]\n\n", argv0);