You need a semicolon after a } any time you are working with something that can be instantiated. Otherwise, you don't.
This is to support the following syntax:
struct Foo
{
int member;
} InstanceOfFoo;
InstanceOfFoo.member = 42;
Can you instantiate structs? Check. Classes? Check. Enums? Check. Namespaces? Nope! Therefore, namespace does not need a trailing semicolon. (For that matter, functions and the bodies of code blocks follow the same pattern.)